public enum SynchronousPrefetchMode extends Enum<SynchronousPrefetchMode>
| Enum Constant and Description |
|---|
DISABLED |
ENABLED |
TOPICSUBSCRIBERONLY |
| Modifier and Type | Method and Description |
|---|---|
static SynchronousPrefetchMode |
fromValue(String value) |
String |
toString() |
String |
value() |
static SynchronousPrefetchMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SynchronousPrefetchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SynchronousPrefetchMode ENABLED
public static final SynchronousPrefetchMode DISABLED
public static final SynchronousPrefetchMode TOPICSUBSCRIBERONLY
public static SynchronousPrefetchMode[] values()
for (SynchronousPrefetchMode c : SynchronousPrefetchMode.values()) System.out.println(c);
public static SynchronousPrefetchMode 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 SynchronousPrefetchMode fromValue(String value)
public String toString()
toString in class Enum<SynchronousPrefetchMode>public String value()