public enum STLock extends Enum<STLock>
Java class for ST_Lock.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_Lock"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="sdtLocked"/> <enumeration value="contentLocked"/> <enumeration value="unlocked"/> <enumeration value="sdtContentLocked"/> </restriction> </simpleType>
Enum Constant and Description |
---|
CONTENT_LOCKED
Contents Cannot Be Edited At
Runtime
|
SDT_CONTENT_LOCKED
Contents Cannot Be Edited At Runtime And SDT
Cannot Be Deleted
|
SDT_LOCKED
SDT Cannot Be Deleted
|
UNLOCKED
No Locking
|
Modifier and Type | Method and Description |
---|---|
static STLock |
fromValue(String v) |
String |
value() |
static STLock |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STLock[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STLock SDT_LOCKED
public static final STLock CONTENT_LOCKED
public static final STLock UNLOCKED
public static final STLock SDT_CONTENT_LOCKED
public static STLock[] values()
for (STLock c : STLock.values()) System.out.println(c);
public static STLock 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 String value()
Copyright © 2007-2014. All Rights Reserved.