Enum RelTypes

  • All Implemented Interfaces:
    Serializable, Comparable<RelTypes>, org.neo4j.graphdb.RelationshipType

    public enum RelTypes
    extends Enum<RelTypes>
    implements org.neo4j.graphdb.RelationshipType
    Possible relationship types
    Author:
    Adrian Fernando Martinez Molina <adrian.martinez@kuwaiba.org>
    • Enum Constant Detail

      • ROOT

        public static final RelTypes ROOT
      • EXTENDS

        public static final RelTypes EXTENDS
      • HAS_ATTRIBUTE

        public static final RelTypes HAS_ATTRIBUTE
      • IMPLEMENTS

        public static final RelTypes IMPLEMENTS
      • BELONGS_TO_CATEGORY

        public static final RelTypes BELONGS_TO_CATEGORY
      • INSTANCE_OF

        public static final RelTypes INSTANCE_OF
      • CHILD_OF

        public static final RelTypes CHILD_OF
      • RELATED_TO

        public static final RelTypes RELATED_TO
      • BELONGS_TO_GROUP

        public static final RelTypes BELONGS_TO_GROUP
      • OWNS_QUERY

        public static final RelTypes OWNS_QUERY
      • POSSIBLE_CHILD

        public static final RelTypes POSSIBLE_CHILD
      • POSSIBLE_SPECIAL_CHILD

        public static final RelTypes POSSIBLE_SPECIAL_CHILD
      • HAS_VIEW

        public static final RelTypes HAS_VIEW
      • HAS_LAYOUT

        public static final RelTypes HAS_LAYOUT
      • HAS_HISTORY_ENTRY

        public static final RelTypes HAS_HISTORY_ENTRY
      • RELATED_TO_SPECIAL

        public static final RelTypes RELATED_TO_SPECIAL
      • CHILD_OF_SPECIAL

        public static final RelTypes CHILD_OF_SPECIAL
      • HAS_PRIVILEGE

        public static final RelTypes HAS_PRIVILEGE
      • PERFORMED_BY

        public static final RelTypes PERFORMED_BY
      • GROUP

        public static final RelTypes GROUP
      • PRIVILEGE

        public static final RelTypes PRIVILEGE
      • SUBSCRIBED_TO

        public static final RelTypes SUBSCRIBED_TO
      • HAS_TEMPLATE

        public static final RelTypes HAS_TEMPLATE
      • HAS_ATTACHMENT

        public static final RelTypes HAS_ATTACHMENT
      • HAS_REPORT

        public static final RelTypes HAS_REPORT
      • INSTANCE_OF_SPECIAL

        public static final RelTypes INSTANCE_OF_SPECIAL
      • HAS_BOOKMARK

        public static final RelTypes HAS_BOOKMARK
      • IS_BOOKMARK_ITEM_IN

        public static final RelTypes IS_BOOKMARK_ITEM_IN
      • HAS_PROCESS_INSTANCE

        public static final RelTypes HAS_PROCESS_INSTANCE
      • HAS_CONFIGURATION

        public static final RelTypes HAS_CONFIGURATION
      • HAS_PARAMETER

        public static final RelTypes HAS_PARAMETER
    • Method Detail

      • values

        public static 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 (RelTypes c : 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 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