public enum RangeType extends Enum<RangeType>
| Enum Constant and Description |
|---|
ENUMERATION |
PRIMITIVE |
QUANTITATIVE_VALUE |
RDFS_CLASS |
| Modifier and Type | Method and Description |
|---|---|
static RangeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RangeType PRIMITIVE
public static final RangeType QUANTITATIVE_VALUE
public static final RangeType ENUMERATION
public static final RangeType RDFS_CLASS
public static RangeType[] values()
for (RangeType c : RangeType.values()) System.out.println(c);
public static RangeType 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 nullCopyright © 2019. All rights reserved.