Enum 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.
    • 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 name
        NullPointerException - if the argument is null