Enum ComponentType

    • Enum Constant Detail

      • ANY

        public static final ComponentType ANY
        The 'ANY' literal object.
        See Also:
        ANY_VALUE
        Generated class or method.
        Ordered collection.
      • BASIC

        public static final ComponentType BASIC
        The 'BASIC' literal object.
        See Also:
        BASIC_VALUE
        Generated class or method.
        Ordered collection.
      • COMPOSITE

        public static final ComponentType COMPOSITE
        The 'COMPOSITE' literal object.
        See Also:
        COMPOSITE_VALUE
        Generated class or method.
        Ordered collection.
    • Field Detail

      • ANY_VALUE

        public static final int ANY_VALUE
        The 'ANY' literal value.

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

        See Also:
        ANY, Constant Field Values
        Generated class or method.
        EMF model class or method.
        literal="AnyComponentType"
        Ordered collection.
      • BASIC_VALUE

        public static final int BASIC_VALUE
        The 'BASIC' literal value.

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

        See Also:
        BASIC, Constant Field Values
        Generated class or method.
        EMF model class or method.
        literal="Basic"
        Ordered collection.
      • COMPOSITE_VALUE

        public static final int COMPOSITE_VALUE
        The 'COMPOSITE' literal value.

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

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

        public static final List<ComponentType> VALUES
        A public read-only list of all the 'Component Type' enumerators.
        Generated class or method.
    • Method Detail

      • values

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

        public static ComponentType 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 ComponentType get​(String literal)
        Returns the 'Component Type' literal with the specified literal value.
        Parameters:
        literal - the literal.
        Returns:
        the matching enumerator or null.
        Generated class or method.
      • getByName

        public static ComponentType getByName​(String name)
        Returns the 'Component Type' literal with the specified name.
        Parameters:
        name - the name.
        Returns:
        the matching enumerator or null.
        Generated class or method.
      • get

        public static ComponentType get​(int value)
        Returns the 'Component Type' 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<ComponentType>
        Generated class or method.