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