Package de.xima.fc.mdl.enums
Enum ELizenzTyp
- java.lang.Object
-
- java.lang.Enum<ELizenzTyp>
-
- de.xima.fc.mdl.enums.ELizenzTyp
-
- All Implemented Interfaces:
Serializable
,Comparable<ELizenzTyp>
@Deprecated public enum ELizenzTyp extends Enum<ELizenzTyp>
Deprecated.This enum used represent the type of the license (e.g. CLOUD); This is no longer needed since the features of a license are determined by EAccessProperties now.
-
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ELizenzTyp
findByKey(String name)
Deprecated.static ELizenzTyp
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static ELizenzTyp[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLOUD
public static final ELizenzTyp CLOUD
Deprecated.
-
DEMO
public static final ELizenzTyp DEMO
Deprecated.
-
LIZENZ
public static final ELizenzTyp LIZENZ
Deprecated.
-
STAGING
public static final ELizenzTyp STAGING
Deprecated.
-
STANDBY
public static final ELizenzTyp STANDBY
Deprecated.
-
-
Method Detail
-
values
public static ELizenzTyp[] values()
Deprecated.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 (ELizenzTyp c : ELizenzTyp.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ELizenzTyp valueOf(String name)
Deprecated.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 nameNullPointerException
- if the argument is null
-
findByKey
public static ELizenzTyp findByKey(String name)
Deprecated.
-
-