org.neo4j.examples
Enum Matrix.RelTypes
java.lang.Object
java.lang.Enum<Matrix.RelTypes>
org.neo4j.examples.Matrix.RelTypes
- All Implemented Interfaces:
- Serializable, Comparable<Matrix.RelTypes>, org.neo4j.graphdb.RelationshipType
- Enclosing class:
- Matrix
public static enum Matrix.RelTypes
- extends Enum<Matrix.RelTypes>
- implements org.neo4j.graphdb.RelationshipType
|
Method Summary |
static Matrix.RelTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Matrix.RelTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
| Methods inherited from interface org.neo4j.graphdb.RelationshipType |
name |
NEO_NODE
public static final Matrix.RelTypes NEO_NODE
KNOWS
public static final Matrix.RelTypes KNOWS
CODED_BY
public static final Matrix.RelTypes CODED_BY
values
public static Matrix.RelTypes[] 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 (Matrix.RelTypes c : Matrix.RelTypes.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Matrix.RelTypes valueOf(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:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
Copyright © 2002-2013 The Neo4j Graph Database Project. All Rights Reserved.