Enum Class VersionParser.CharType

java.lang.Object
java.lang.Enum<VersionParser.CharType>
com.github.zafarkhaja.semver.VersionParser.CharType
All Implemented Interfaces:
Stream.ElementType<Character>, Serializable, Comparable<VersionParser.CharType>, Constable
Enclosing class:
VersionParser

static enum VersionParser.CharType extends Enum<VersionParser.CharType> implements Stream.ElementType<Character>
Valid character types.
  • Enum Constant Details

  • Constructor Details

    • CharType

      private CharType()
  • Method Details

    • values

      public static VersionParser.CharType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static VersionParser.CharType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • forCharacter

      static VersionParser.CharType forCharacter(Character chr)
      Gets the type for a given character.
      Parameters:
      chr - the character to get the type for
      Returns:
      the type of the specified character