Package de.businesscode.bcdui.binding
Enum BindingSet.SECURITY_OPS
- java.lang.Object
-
- java.lang.Enum<BindingSet.SECURITY_OPS>
-
- de.businesscode.bcdui.binding.BindingSet.SECURITY_OPS
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<BindingSet.SECURITY_OPS>
- Enclosing interface:
- BindingSet
public static enum BindingSet.SECURITY_OPS extends java.lang.Enum<BindingSet.SECURITY_OPS>
security operations supported
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BindingSet.SECURITY_OPS
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BindingSet.SECURITY_OPS[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
write
public static final BindingSet.SECURITY_OPS write
any operation modifying data (C-UD) as defined by 'name' attribute of the Operation node in the configuration
-
read
public static final BindingSet.SECURITY_OPS read
any read operation as defined by 'name' attribute of the Operation node in the configuration
-
-
Method Detail
-
values
public static BindingSet.SECURITY_OPS[] 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 (BindingSet.SECURITY_OPS c : BindingSet.SECURITY_OPS.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BindingSet.SECURITY_OPS 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
-
-