Enum PatternStyle

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      ANT
      The 'ANT' literal object.
      EXACT
      The 'EXACT' literal object.
      REGEX
      The 'REGEX' literal object.
      TREE
      The 'TREE' literal object.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int ANT_VALUE
      The 'ANT' literal value.
      static int EXACT_VALUE
      The 'EXACT' literal value.
      static int REGEX_VALUE
      The 'REGEX' literal value.
      static int TREE_VALUE
      The 'TREE' literal value.
      static java.util.List<PatternStyle> VALUES
      A public read-only list of all the 'Pattern Style' enumerators.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static PatternStyle get​(int value)
      Returns the 'Pattern Style' literal with the specified integer value.
      static PatternStyle get​(java.lang.String literal)
      Returns the 'Pattern Style' literal with the specified literal value.
      static PatternStyle getByName​(java.lang.String name)
      Returns the 'Pattern Style' literal with the specified name.
      java.lang.String getLiteral()
      java.lang.String getName()
      int getValue()
      java.lang.String toString()
      Returns the literal value of the enumerator, which is its string representation.
      static PatternStyle valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static PatternStyle[] 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, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Field Detail

      • EXACT_VALUE

        public static final int EXACT_VALUE
        The 'EXACT' literal value.

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

        See Also:
        EXACT, Constant Field Values
        Generated
        Model
        Ordered
      • TREE_VALUE

        public static final int TREE_VALUE
        The 'TREE' literal value.

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

        See Also:
        TREE, Constant Field Values
        Generated
        Model
        Ordered
      • ANT_VALUE

        public static final int ANT_VALUE
        The 'ANT' literal value.

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

        See Also:
        ANT, Constant Field Values
        Generated
        Model
        Ordered
      • REGEX_VALUE

        public static final int REGEX_VALUE
        The 'REGEX' literal value.

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

        See Also:
        REGEX, Constant Field Values
        Generated
        Model
        Ordered
      • VALUES

        public static final java.util.List<PatternStyle> VALUES
        A public read-only list of all the 'Pattern Style' enumerators.
        Generated
    • Method Detail

      • values

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

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

        public static PatternStyle get​(java.lang.String literal)
        Returns the 'Pattern Style' literal with the specified literal value.
        Parameters:
        literal - the literal.
        Returns:
        the matching enumerator or null.
        Generated
      • getByName

        public static PatternStyle getByName​(java.lang.String name)
        Returns the 'Pattern Style' literal with the specified name.
        Parameters:
        name - the name.
        Returns:
        the matching enumerator or null.
        Generated
      • get

        public static PatternStyle get​(int value)
        Returns the 'Pattern Style' literal with the specified integer value.
        Parameters:
        value - the integer value.
        Returns:
        the matching enumerator or null.
        Generated
      • getValue

        public int getValue()
        Specified by:
        getValue in interface Enumerator
        Generated
      • getName

        public java.lang.String getName()
        Specified by:
        getName in interface Enumerator
        Generated
      • getLiteral

        public java.lang.String getLiteral()
        Specified by:
        getLiteral in interface Enumerator
        Generated
      • toString

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