Enum RelationshipType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<RelationshipType>

    public enum RelationshipType
    extends java.lang.Enum<RelationshipType>
    Defines the relationship types between neighboring shapes.
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      BOUND
      A BINDING relationship exists between the following shapes: Between an operation and the service or resource that the operation is bound to (through operations or a lifecycle). Between a resource and the resource or service that the resource is bound to in the "resources" property. The subject of the relationship is that shape that was bound, and the target is the shape that declared the binding.
      COLLECTION_OPERATION
      A collection operation relationship exists between a resource and the operations bound to the resource in the "collectionOperations", "create", and "list" properties.
      CREATE
      Relationships that exist between a resource and the create lifecycle operation.
      DELETE
      Relationships that exist between a resource and the delete lifecycle operation.
      ERROR
      Relationships that exist on operation shapes.
      IDENTIFIER
      Relationships that exist between a member and the shapes that are referenced by its identifiers property.
      INPUT
      Relationships that exist on operation shapes.
      INSTANCE_OPERATION
      An instance operation relationship exists between a resource and the operations bound to the resource in the "Operations", "put", "read", "update", and "delete" properties.
      LIST
      Relationships that exist between a resource and the list lifecycle operation.
      LIST_MEMBER
      Relationships that exist on list shapes to their member shapes.
      MAP_KEY
      Relationships that exist on map shapes.
      MAP_VALUE
      Relationships that exist on map shapes.
      MEMBER_CONTAINER
      Relationships exist on member shapes.
      MEMBER_TARGET
      Relationships exist on member shapes.
      OPERATION
      An operation relationship exists between a service and the operations bound to the service in the "operations" property, and between a resource and the operations bound to the resource in the "operations", "collectionOperations", and lifecycle properties.
      OUTPUT
      Relationships that exist on operation shapes.
      PUT
      Relationships that exist between a resource and the put lifecycle operation.
      READ
      Relationships that exist between a resource and the get lifecycle operation.
      RESOURCE
      A resource relationship exists between a service or resource and the resources bound through the "resources" property.
      SET_MEMBER
      Relationships that exist on set shapes to their member shapes.
      STRUCTURE_MEMBER
      Relationships that exist on structure shapes.
      UNION_MEMBER
      Relationships that exist on union shapes.
      UPDATE
      Relationships that exist between a resource and the update lifecycle operation.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      RelationshipDirection getDirection()
      Gets the direction of the relationship.
      java.util.Optional<java.lang.String> getSelectorLabel()
      Gets the token that is used in Selector expressions when referring to the relationship or an empty Optional if this relationship is not used directly in a selector.
      static RelationshipType valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static RelationshipType[] 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
    • Enum Constant Detail

      • RESOURCE

        public static final RelationshipType RESOURCE
        A resource relationship exists between a service or resource and the resources bound through the "resources" property.
      • OPERATION

        public static final RelationshipType OPERATION
        An operation relationship exists between a service and the operations bound to the service in the "operations" property, and between a resource and the operations bound to the resource in the "operations", "collectionOperations", and lifecycle properties.
      • COLLECTION_OPERATION

        public static final RelationshipType COLLECTION_OPERATION
        A collection operation relationship exists between a resource and the operations bound to the resource in the "collectionOperations", "create", and "list" properties.
      • INSTANCE_OPERATION

        public static final RelationshipType INSTANCE_OPERATION
        An instance operation relationship exists between a resource and the operations bound to the resource in the "Operations", "put", "read", "update", and "delete" properties.
      • BOUND

        public static final RelationshipType BOUND
        A BINDING relationship exists between the following shapes:
        • Between an operation and the service or resource that the operation is bound to (through operations or a lifecycle).
        • Between a resource and the resource or service that the resource is bound to in the "resources" property.
        The subject of the relationship is that shape that was bound, and the target is the shape that declared the binding.
      • PUT

        public static final RelationshipType PUT
        Relationships that exist between a resource and the put lifecycle operation.
      • CREATE

        public static final RelationshipType CREATE
        Relationships that exist between a resource and the create lifecycle operation.
      • READ

        public static final RelationshipType READ
        Relationships that exist between a resource and the get lifecycle operation.
      • UPDATE

        public static final RelationshipType UPDATE
        Relationships that exist between a resource and the update lifecycle operation.
      • DELETE

        public static final RelationshipType DELETE
        Relationships that exist between a resource and the delete lifecycle operation.
      • LIST

        public static final RelationshipType LIST
        Relationships that exist between a resource and the list lifecycle operation.
      • IDENTIFIER

        public static final RelationshipType IDENTIFIER
        Relationships that exist between a member and the shapes that are referenced by its identifiers property.
      • MEMBER_CONTAINER

        public static final RelationshipType MEMBER_CONTAINER
        Relationships exist on member shapes. The subject of the relationship is the member shape, and the neighbor is the aggregate shape that contains the member.
      • MEMBER_TARGET

        public static final RelationshipType MEMBER_TARGET
        Relationships exist on member shapes. The subject of the relationship is the member shape, and the neighbor is the shape that the member targets.
      • ERROR

        public static final RelationshipType ERROR
        Relationships that exist on operation shapes. They reference structure shapes that can be returned from the operation.
      • MAP_KEY

        public static final RelationshipType MAP_KEY
        Relationships that exist on map shapes. They reference member shapes that define the key type for the map.
      • MAP_VALUE

        public static final RelationshipType MAP_VALUE
        Relationships that exist on map shapes. They reference member shapes that define the value type for the map.
      • STRUCTURE_MEMBER

        public static final RelationshipType STRUCTURE_MEMBER
        Relationships that exist on structure shapes. They reference member shapes that define the attributes of a structure.
      • UNION_MEMBER

        public static final RelationshipType UNION_MEMBER
        Relationships that exist on union shapes. They reference the member shapes that define the members of the union.
    • Method Detail

      • values

        public static RelationshipType[] 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 (RelationshipType c : RelationshipType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static RelationshipType 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
      • getSelectorLabel

        public java.util.Optional<java.lang.String> getSelectorLabel()
        Gets the token that is used in Selector expressions when referring to the relationship or an empty Optional if this relationship is not used directly in a selector.
        Returns:
        Returns the optionally present selector token for this relationship.
      • getDirection

        public RelationshipDirection getDirection()
        Gets the direction of the relationship.

        A RelationshipDirection.DIRECTED direction is formed from a shape that defines a reference to another shape (for example, when a resource defines operations or resources it contains).

        A RelationshipDirection.INVERTED relationship is a relationship from a shape to a shape that defines a relationship to it. The target of such a relationship doesn't define the relationship, but is the target of the relationship.

        Returns:
        Returns the direction of the relationship.