Enum ScopeReference.ReferenceType

  • All Implemented Interfaces:
    BmcEnum, Serializable, Comparable<ScopeReference.ReferenceType>
    Enclosing class:
    ScopeReference

    public static enum ScopeReference.ReferenceType
    extends Enum<ScopeReference.ReferenceType>
    implements BmcEnum
    The reference type for this reference.

    Set to null for a direct reference, for indirect references set to a type of association such as “BOUND_ENTITY_SHAPE”. Current known reference type values are “BOUND_ENTITY_SHAPE”, “BOUND_ENTITY_SHAPE_FIELD”, “OCI_FUNCTION_INPUT_SHAPE”, “OCI_FUNCTION_OUTPUT_SHAPE”

    • Method Detail

      • values

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

        public static ScopeReference.ReferenceType 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