Package com.securenative.models
Enum ProcessesType
- java.lang.Object
-
- java.lang.Enum<ProcessesType>
-
- com.securenative.models.ProcessesType
-
- All Implemented Interfaces:
Serializable,Comparable<ProcessesType>,java.lang.constant.Constable
public enum ProcessesType extends Enum<ProcessesType>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALLOW_IPBLOCK_IPUNBLOCK_IP
-
Method Summary
Modifier and Type Method Description StringgetType()static ProcessesTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ProcessesType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BLOCK_IP
public static final ProcessesType BLOCK_IP
-
UNBLOCK_IP
public static final ProcessesType UNBLOCK_IP
-
ALLOW_IP
public static final ProcessesType ALLOW_IP
-
-
Method Detail
-
values
public static ProcessesType[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProcessesType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getType
public String getType()
-
-