Enum Constant and Description |
---|
Comparison_Equal |
Comparison_GreaterThan |
Comparison_GreaterThanOrEqual |
Comparison_LessThan |
Comparison_LessThanOrEqual |
Comparison_NotEqual |
DBMapping |
OR_Begin |
OR_End |
OWL_DIFFERENT_FROM |
Triple |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getName()
Returns the name of an
|
static AtomType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AtomType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AtomType Comparison_Equal
public static final AtomType Comparison_GreaterThan
public static final AtomType Comparison_GreaterThanOrEqual
public static final AtomType Comparison_LessThan
public static final AtomType Comparison_LessThanOrEqual
public static final AtomType Comparison_NotEqual
public static final AtomType DBMapping
public static final AtomType OR_Begin
public static final AtomType OR_End
public static final AtomType OWL_DIFFERENT_FROM
public static final AtomType Triple
public java.lang.String getName()
public static AtomType 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 nullpublic static AtomType[] values()
for (AtomType c : AtomType.values()) System.out.println(c);