Enum EAclEntryType
- java.lang.Object
-
- java.lang.Enum<EAclEntryType>
-
- de.desy.mst.libs.framework.mstapp.security.EAclEntryType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<EAclEntryType>
public enum EAclEntryType extends java.lang.Enum<EAclEntryType>
- Author:
- ws
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BKR
Developer
DeviceServer
Experte
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
is(OPModeACLEntry entry)
boolean
is(OPModeACLEntry entry, java.lang.String user, java.lang.String hostName, java.lang.String appName)
static boolean
stringStartsWith(java.lang.String theString, java.lang.String... startCandidates)
static EAclEntryType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static EAclEntryType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Experte
public static final EAclEntryType Experte
-
Developer
public static final EAclEntryType Developer
-
BKR
public static final EAclEntryType BKR
-
DeviceServer
public static final EAclEntryType DeviceServer
-
-
Method Detail
-
values
public static EAclEntryType[] 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 (EAclEntryType c : EAclEntryType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EAclEntryType 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
-
stringStartsWith
public static boolean stringStartsWith(java.lang.String theString, java.lang.String... startCandidates)
-
is
public final boolean is(OPModeACLEntry entry, java.lang.String user, java.lang.String hostName, java.lang.String appName)
-
is
public final boolean is(OPModeACLEntry entry)
-
-