public enum ObjectStoreType extends Enum<ObjectStoreType>
| Modifier and Type | Method and Description |
|---|---|
static ObjectStoreType |
valueOf(int ordinal) |
static ObjectStoreType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ObjectStoreType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectStoreType S3
public static final ObjectStoreType DISK
public static ObjectStoreType[] values()
for (ObjectStoreType c : ObjectStoreType.values()) System.out.println(c);
public static ObjectStoreType 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 ObjectStoreType valueOf(int ordinal)
Copyright © 2017. All rights reserved.