Enum CollectionSpecificationInterpretationType

  • All Implemented Interfaces:
    Serializable, Comparable<CollectionSpecificationInterpretationType>

    public enum CollectionSpecificationInterpretationType
    extends Enum<CollectionSpecificationInterpretationType>

    Java class for CollectionSpecificationInterpretationType.

    The following schema fragment specifies the expected content contained within this class.

     <simpleType name="CollectionSpecificationInterpretationType">
       <restriction base="{http://www.w3.org/2001/XMLSchema}string">
         <enumeration value="assignment"/>
         <enumeration value="explicit"/>
         <enumeration value="archetype"/>
         <enumeration value="org"/>
       </restriction>
     </simpleType>
     
    • Enum Constant Detail

      • ASSIGNMENT

        public static final CollectionSpecificationInterpretationType ASSIGNMENT
        Assignment-based interpretation of a collection. Selects objects that have assignment to the reference object. For example, selects all owners of a role.
      • EXPLICIT

        public static final CollectionSpecificationInterpretationType EXPLICIT
        Explicit collection interpretation. This mode is only valid if a reference object is ObjectCollectionType. In that case explicit collection instructions in the ObjectCollectionType (e.g. filter) will be used to select objects.
      • ARCHETYPE

        public static final CollectionSpecificationInterpretationType ARCHETYPE
        Archetype collection interpretation. This mode is only valid if a reference object is ArchetypeType. In this case all objects of a given archetype are selected.
      • ORG

        public static final CollectionSpecificationInterpretationType ORG
        Org-based collection interpretation. This mode is only valid if a reference object is OrgType. In this case all objects that belong to given organizational unit (or subtree) are selected.
    • Method Detail

      • values

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

        public static CollectionSpecificationInterpretationType 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
      • value

        public String value()