Enum PCMFileExtensions

    • Field Detail

      • SYSTEM_VALUE

        public static final int SYSTEM_VALUE
        The 'SYSTEM' literal value.

        If the meaning of 'SYSTEM' literal object isn't clear, there really should be more of a description here...

        See Also:
        SYSTEM, Constant Field Values
        Generated class or method.
        EMF model class or method.
        literal="system"
        Ordered collection.
      • ALLOCATION_VALUE

        public static final int ALLOCATION_VALUE
        The 'ALLOCATION' literal value.

        If the meaning of 'ALLOCATION' literal object isn't clear, there really should be more of a description here...

        See Also:
        ALLOCATION, Constant Field Values
        Generated class or method.
        EMF model class or method.
        literal="allocation"
        Ordered collection.
      • RESOURCEENVIRONMENT_VALUE

        public static final int RESOURCEENVIRONMENT_VALUE
        The 'RESOURCEENVIRONMENT' literal value.

        If the meaning of 'RESOURCEENVIRONMENT' literal object isn't clear, there really should be more of a description here...

        See Also:
        RESOURCEENVIRONMENT, Constant Field Values
        Generated class or method.
        EMF model class or method.
        literal="resourceenvironment"
        Ordered collection.
      • REPOSITORY_VALUE

        public static final int REPOSITORY_VALUE
        The 'REPOSITORY' literal value.

        If the meaning of 'REPOSITORY' literal object isn't clear, there really should be more of a description here...

        See Also:
        REPOSITORY, Constant Field Values
        Generated class or method.
        EMF model class or method.
        literal="repository"
        Ordered collection.
      • USAGEMODEL_VALUE

        public static final int USAGEMODEL_VALUE
        The 'USAGEMODEL' literal value.

        If the meaning of 'USAGEMODEL' literal object isn't clear, there really should be more of a description here...

        See Also:
        USAGEMODEL, Constant Field Values
        Generated class or method.
        EMF model class or method.
        literal="usagemodel"
        Ordered collection.
      • RESOURCETYPE_VALUE

        public static final int RESOURCETYPE_VALUE
        The 'RESOURCETYPE' literal value.

        If the meaning of 'RESOURCETYPE' literal object isn't clear, there really should be more of a description here...

        See Also:
        RESOURCETYPE, Constant Field Values
        Generated class or method.
        EMF model class or method.
        literal="resourcetype"
        Ordered collection.
      • MONITORREPOSITORY_VALUE

        public static final int MONITORREPOSITORY_VALUE
        The 'MONITORREPOSITORY' literal value.

        If the meaning of 'MONITORREPOSITORY' literal object isn't clear, there really should be more of a description here...

        See Also:
        MONITORREPOSITORY, Constant Field Values
        Generated class or method.
        EMF model class or method.
        literal="monitorrepository"
        Ordered collection.
      • PCMMEASURINGPOINT_VALUE

        public static final int PCMMEASURINGPOINT_VALUE
        The 'PCMMEASURINGPOINT' literal value.

        If the meaning of 'PCMMEASURINGPOINT' literal object isn't clear, there really should be more of a description here...

        See Also:
        PCMMEASURINGPOINT, Constant Field Values
        Generated class or method.
        EMF model class or method.
        literal="pcmmeasuringpoint"
        Ordered collection.
      • SERVICELEVELOBJECTIVE_VALUE

        public static final int SERVICELEVELOBJECTIVE_VALUE
        The 'SERVICELEVELOBJECTIVE' literal value.

        If the meaning of 'SERVICELEVELOBJECTIVE' literal object isn't clear, there really should be more of a description here...

        See Also:
        SERVICELEVELOBJECTIVE, Constant Field Values
        Generated class or method.
        EMF model class or method.
        literal="slo"
        Ordered collection.
      • VALUES

        public static final List<PCMFileExtensions> VALUES
        A public read-only list of all the 'PCM File Extensions' enumerators.
        Generated class or method.
    • Method Detail

      • values

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

        public static PCMFileExtensions 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
      • get

        public static PCMFileExtensions get​(String literal)
        Returns the 'PCM File Extensions' literal with the specified literal value.
        Parameters:
        literal - the literal.
        Returns:
        the matching enumerator or null.
        Generated class or method.
      • getByName

        public static PCMFileExtensions getByName​(String name)
        Returns the 'PCM File Extensions' literal with the specified name.
        Parameters:
        name - the name.
        Returns:
        the matching enumerator or null.
        Generated class or method.
      • get

        public static PCMFileExtensions get​(int value)
        Returns the 'PCM File Extensions' literal with the specified integer value.
        Parameters:
        value - the integer value.
        Returns:
        the matching enumerator or null.
        Generated class or method.
      • getValue

        public int getValue()
        Specified by:
        getValue in interface Enumerator
        Generated class or method.
      • toString

        public String toString()
        Returns the literal value of the enumerator, which is its string representation.
        Overrides:
        toString in class Enum<PCMFileExtensions>
        Generated class or method.