Enum RelTypes
- java.lang.Object
-
- java.lang.Enum<RelTypes>
-
- org.neotropic.kuwaiba.core.persistence.reference.neo4j.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 Summary
Enum Constants Enum Constant Description BELONGS_TO_CATEGORY
BELONGS_TO_GROUP
BELONGS_TO_SYNC_GROUP
Used to associate a synchronization data source to a synchronization group syncDatasourceConfiguration -> syncGroups cardinality (*..1)CHILD_OF
CHILD_OF_SPECIAL
EXTENDS
EXTENDS_FROM_TEMPLATE
Used to associate a synchronization data source to a template data source syncDatasourceConfiguration -> templateDataSource cardinality (*..1)GROUP
HAS_ATTACHMENT
HAS_ATTRIBUTE
HAS_BOOKMARK
HAS_HISTORY_ENTRY
HAS_LAYOUT
HAS_PARAMETER
HAS_PRIVILEGE
HAS_PROCESS_INSTANCE
HAS_REPORT
HAS_SYNC_COMMON_PROPERTIES
Used to related a synchronization data source configuration with a common properties it have data source type.HAS_SYNC_CONFIGURATION
Used to related a synchronization data source configuration with an object.HAS_TASK
HAS_TEMPLATE
HAS_USER
HAS_VIEW
IMPLEMENTS
INSTANCE_OF
INSTANCE_OF_SPECIAL
IS_BOOKMARK_ITEM_IN
OWNS_QUERY
PERFORMED_BY
POSSIBLE_CHILD
POSSIBLE_SPECIAL_CHILD
PRIVILEGE
RELATED_TO
RELATED_TO_SPECIAL
ROOT
SUBSCRIBED_TO
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RelTypes
valueOf(String name)
Returns the enum constant of this type with the specified name.static RelTypes[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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_PARAMETER
public static final RelTypes HAS_PARAMETER
-
HAS_TASK
public static final RelTypes HAS_TASK
-
HAS_USER
public static final RelTypes HAS_USER
-
HAS_SYNC_CONFIGURATION
public static final RelTypes HAS_SYNC_CONFIGURATION
Used to related a synchronization data source configuration with an object. inventoryObjects -> syncDatasourceConfiguration cardinality (1..*)
-
HAS_SYNC_COMMON_PROPERTIES
public static final RelTypes HAS_SYNC_COMMON_PROPERTIES
Used to related a synchronization data source configuration with a common properties it have data source type. syncDatasourceConfiguration -> syncDatasourceCommonProperties cardinality (*..1)
-
BELONGS_TO_SYNC_GROUP
public static final RelTypes BELONGS_TO_SYNC_GROUP
Used to associate a synchronization data source to a synchronization group syncDatasourceConfiguration -> syncGroups cardinality (*..1)
-
EXTENDS_FROM_TEMPLATE
public static final RelTypes EXTENDS_FROM_TEMPLATE
Used to associate a synchronization data source to a template data source syncDatasourceConfiguration -> templateDataSource cardinality (*..1)
-
-
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 nameNullPointerException
- if the argument is null
-
-