public enum ReachabilityIndexCreationMode extends java.lang.Enum<ReachabilityIndexCreationMode>
Enum Constant and Description |
---|
AUTO
Create RG based on heuristics
|
FORCE
Always create RG
|
OFF
Do not create RG
|
Modifier and Type | Method and Description |
---|---|
static ReachabilityIndexCreationMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReachabilityIndexCreationMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final ReachabilityIndexCreationMode AUTO
public static final ReachabilityIndexCreationMode FORCE
public static final ReachabilityIndexCreationMode OFF
public static ReachabilityIndexCreationMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static ReachabilityIndexCreationMode[] values()
for (ReachabilityIndexCreationMode c : ReachabilityIndexCreationMode.values()) System.out.println(c);