public enum ObjectPrefixSkipping extends java.lang.Enum<ObjectPrefixSkipping>
| Enum Constant and Description |
|---|
SkipAll |
SkipDatabase |
SkipNothing |
| Modifier and Type | Method and Description |
|---|---|
static ObjectPrefixSkipping |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ObjectPrefixSkipping[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectPrefixSkipping SkipAll
public static final ObjectPrefixSkipping SkipDatabase
public static final ObjectPrefixSkipping SkipNothing
public static ObjectPrefixSkipping[] values()
for (ObjectPrefixSkipping c : ObjectPrefixSkipping.values()) System.out.println(c);
public static ObjectPrefixSkipping 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 null