Uses of Enum
com.github.zafarkhaja.semver.VersionParser.CharType
Packages that use VersionParser.CharType
Package
Description
This is the root package of the Java SemVer library.
-
Uses of VersionParser.CharType in com.github.zafarkhaja.semver
Subclasses with type arguments of type VersionParser.CharType in com.github.zafarkhaja.semverModifier and TypeClassDescription(package private) static enumValid character types.Fields in com.github.zafarkhaja.semver declared as VersionParser.CharTypeModifier and TypeFieldDescriptionprivate final VersionParser.CharType[]UnexpectedCharacterException.expectedThe array of expected character types.Methods in com.github.zafarkhaja.semver that return VersionParser.CharTypeModifier and TypeMethodDescription(package private) static VersionParser.CharTypeVersionParser.CharType.forCharacter(Character chr) Gets the type for a given character.(package private) VersionParser.CharType[]UnexpectedCharacterException.getExpectedCharTypes()Gets the expected character types.private VersionParser.CharTypeVersionParser.nearestCharType(VersionParser.CharType... types) Finds the nearest character type.static VersionParser.CharTypeReturns the enum constant of this type with the specified name.static VersionParser.CharType[]VersionParser.CharType.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.github.zafarkhaja.semver with parameters of type VersionParser.CharTypeModifier and TypeMethodDescriptionprivate CharacterVersionParser.consumeNextCharacter(VersionParser.CharType... expected) Tries to consume the next character in the stream.private voidVersionParser.ensureValidLookahead(VersionParser.CharType... expected) Checks if the next character in the stream is valid.private VersionParser.CharTypeVersionParser.nearestCharType(VersionParser.CharType... types) Finds the nearest character type.Constructors in com.github.zafarkhaja.semver with parameters of type VersionParser.CharTypeModifierConstructorDescription(package private)UnexpectedCharacterException(Character unexpected, int position, VersionParser.CharType... expected) Constructs aUnexpectedCharacterExceptioninstance with the unexpected character, its position and the expected types.