org.neo4j.examples
Enum Matrix.RelTypes

java.lang.Object
  extended by java.lang.Enum<Matrix.RelTypes>
      extended by 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


Enum Constant Summary
CODED_BY
           
KNOWS
           
NEO_NODE
           
 
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 class java.lang.Enum
clone, compareTo, equals, finalize, 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
 

Enum Constant Detail

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
Method Detail

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.