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