protected static enum PropertyDef.PropertyType extends Enum<PropertyDef.PropertyType>
Enum Constant and Description |
---|
DATATYPE
The property is a DataTypeProperty; that is, the property links
individuals (instances) to data values
|
OBJECT
The property is an ObjectProperty; that is, the property links
individuals (instances) to other individuals
|
Modifier and Type | Method and Description |
---|---|
static PropertyDef.PropertyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyDef.PropertyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyDef.PropertyType OBJECT
public static final PropertyDef.PropertyType DATATYPE
public static PropertyDef.PropertyType[] values()
for (PropertyDef.PropertyType c : PropertyDef.PropertyType.values()) System.out.println(c);
public static PropertyDef.PropertyType 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 null