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