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 SummaryAll Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ELizenzTypfindByKey(String name)Deprecated.static ELizenzTypvalueOf(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- 
CLOUDpublic static final ELizenzTyp CLOUD Deprecated.
 - 
DEMOpublic static final ELizenzTyp DEMO Deprecated.
 - 
LIZENZpublic static final ELizenzTyp LIZENZ Deprecated.
 - 
STAGINGpublic static final ELizenzTyp STAGING Deprecated.
 - 
STANDBYpublic static final ELizenzTyp STANDBY Deprecated.
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 - 
findByKeypublic static ELizenzTyp findByKey(String name) Deprecated.
 
- 
 
-