Enum Class KindOfVersion
- All Implemented Interfaces:
Serializable
,Comparable<KindOfVersion>
,Constable
Stellt alle Möglichkeiten dar, in der ein Objekt in einer Version gültig sein kann.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIn allen VersionenIn jeder VersionIn der nächsten VersionIn der derzeit benutzten Version -
Method Summary
Modifier and TypeMethodDescriptionbyte
getCode()
static KindOfVersion
getInstance
(byte code) getName()
toString()
static KindOfVersion
Returns the enum constant of this class with the specified name.static KindOfVersion[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
IN_NEXT_VERSION
In der nächsten Version -
IN_VERSION
In der derzeit benutzten Version -
IN_ALL_VERSIONS
In allen Versionen -
IN_ANY_VERSIONS
In jeder Version
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
getInstance
-
getCode
public byte getCode() -
getName
-
toString
- Overrides:
toString
in classEnum<KindOfVersion>
-