public enum ReplicationType extends Enum<ReplicationType>
Enum Constant and Description |
---|
REFRESH_AND_PERSIST |
REFRESH_ONLY |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static ReplicationType |
getInstance(String type)
Get the ReplicationType associated with the given String.
|
static ReplicationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReplicationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReplicationType REFRESH_ONLY
public static final ReplicationType REFRESH_AND_PERSIST
public static final ReplicationType UNKNOWN
public static ReplicationType[] values()
for (ReplicationType c : ReplicationType.values()) System.out.println(c);
public static ReplicationType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullpublic static ReplicationType getInstance(String type)
type
- The ReplicationType as a StringCopyright © 2003-2013 Apache Software Foundation. All Rights Reserved.