public static enum OwlRestriction.ValueRange extends java.lang.Enum<OwlRestriction.ValueRange>
Enum Constant and Description |
---|
ALL_VALUES_FROM
All values for the property must be from the specified class
|
HAS_VALUE
The property must have a specific value
|
NO_VALUES_FROM
No values for the property must be from the specified class
|
NOT_VALUE
The property must have a value which is not a specific value
|
SOME_VALUES_FROM
Some values for the property must be from the specified class
|
UNRESTRICTED
the property has no value restrictions
|
Modifier and Type | Method and Description |
---|---|
static OwlRestriction.ValueRange |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OwlRestriction.ValueRange[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OwlRestriction.ValueRange ALL_VALUES_FROM
public static final OwlRestriction.ValueRange SOME_VALUES_FROM
public static final OwlRestriction.ValueRange NO_VALUES_FROM
public static final OwlRestriction.ValueRange HAS_VALUE
public static final OwlRestriction.ValueRange NOT_VALUE
public static final OwlRestriction.ValueRange UNRESTRICTED
public static OwlRestriction.ValueRange[] values()
for (OwlRestriction.ValueRange c : OwlRestriction.ValueRange.values()) System.out.println(c);
public static OwlRestriction.ValueRange 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