Package pro.gravit.launcher.profiles
Enum ClientProfile.SecurityManagerConfig
- java.lang.Object
-
- java.lang.Enum<ClientProfile.SecurityManagerConfig>
-
- pro.gravit.launcher.profiles.ClientProfile.SecurityManagerConfig
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ClientProfile.SecurityManagerConfig>
- Enclosing class:
- ClientProfile
public static enum ClientProfile.SecurityManagerConfig extends java.lang.Enum<ClientProfile.SecurityManagerConfig>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ClientProfile.SecurityManagerConfigvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ClientProfile.SecurityManagerConfig[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final ClientProfile.SecurityManagerConfig NONE
-
CLIENT
public static final ClientProfile.SecurityManagerConfig CLIENT
-
LAUNCHER
public static final ClientProfile.SecurityManagerConfig LAUNCHER
-
MIXED
public static final ClientProfile.SecurityManagerConfig MIXED
-
-
Method Detail
-
values
public static ClientProfile.SecurityManagerConfig[] values()
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 (ClientProfile.SecurityManagerConfig c : ClientProfile.SecurityManagerConfig.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ClientProfile.SecurityManagerConfig valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-