ch.hsr.bieridee.config
Enum RelType
java.lang.Object
java.lang.Enum<RelType>
ch.hsr.bieridee.config.RelType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<RelType>, org.neo4j.graphdb.RelationshipType
public enum RelType
- extends java.lang.Enum<RelType>
- implements org.neo4j.graphdb.RelationshipType
Graph relationships.
Method Summary |
static RelType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static RelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface org.neo4j.graphdb.RelationshipType |
name |
INDEX_BEER
public static final RelType INDEX_BEER
INDEX_BARCODE
public static final RelType INDEX_BARCODE
INDEX_USER
public static final RelType INDEX_USER
INDEX_TIMELINE
public static final RelType INDEX_TIMELINE
INDEX_TAG
public static final RelType INDEX_TAG
INDEX_BREWERY
public static final RelType INDEX_BREWERY
INDEX_BEERTYPE
public static final RelType INDEX_BEERTYPE
INDEXES
public static final RelType INDEXES
HAS_BEERTYPE
public static final RelType HAS_BEERTYPE
DOES
public static final RelType DOES
CONTAINS
public static final RelType CONTAINS
HAS_TAG
public static final RelType HAS_TAG
INDEX_TIMELINESTART
public static final RelType INDEX_TIMELINESTART
NEXT
public static final RelType NEXT
BREWN_BY
public static final RelType BREWN_BY
INDEX_ACTIVERATINGINDEX
public static final RelType INDEX_ACTIVERATINGINDEX
INDEXES_ACTIVE
public static final RelType INDEXES_ACTIVE
INDEX_UNKNOWN
public static final RelType INDEX_UNKNOWN
HAS_BARCODE
public static final RelType HAS_BARCODE
values
public static RelType[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (RelType c : RelType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static RelType valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null