Enum PermissionType
- java.lang.Object
-
- java.lang.Enum<PermissionType>
-
- org.apache.plc4x.java.opcua.readwrite.PermissionType
-
- All Implemented Interfaces:
Serializable,Comparable<PermissionType>
public enum PermissionType extends Enum<PermissionType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PermissionTypeenumForValue(long value)longgetValue()static BooleanisDefined(long value)static PermissionTypevalueOf(String name)Returns the enum constant of this type with the specified name.static PermissionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
permissionTypeNone
public static final PermissionType permissionTypeNone
-
permissionTypeBrowse
public static final PermissionType permissionTypeBrowse
-
permissionTypeReadRolePermissions
public static final PermissionType permissionTypeReadRolePermissions
-
permissionTypeWriteAttribute
public static final PermissionType permissionTypeWriteAttribute
-
permissionTypeWriteRolePermissions
public static final PermissionType permissionTypeWriteRolePermissions
-
permissionTypeWriteHistorizing
public static final PermissionType permissionTypeWriteHistorizing
-
permissionTypeRead
public static final PermissionType permissionTypeRead
-
permissionTypeWrite
public static final PermissionType permissionTypeWrite
-
permissionTypeReadHistory
public static final PermissionType permissionTypeReadHistory
-
permissionTypeInsertHistory
public static final PermissionType permissionTypeInsertHistory
-
permissionTypeModifyHistory
public static final PermissionType permissionTypeModifyHistory
-
permissionTypeDeleteHistory
public static final PermissionType permissionTypeDeleteHistory
-
permissionTypeReceiveEvents
public static final PermissionType permissionTypeReceiveEvents
-
permissionTypeCall
public static final PermissionType permissionTypeCall
-
permissionTypeAddReference
public static final PermissionType permissionTypeAddReference
-
permissionTypeRemoveReference
public static final PermissionType permissionTypeRemoveReference
-
permissionTypeDeleteNode
public static final PermissionType permissionTypeDeleteNode
-
permissionTypeAddNode
public static final PermissionType permissionTypeAddNode
-
-
Method Detail
-
values
public static PermissionType[] 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 (PermissionType c : PermissionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PermissionType 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
-
getValue
public long getValue()
-
enumForValue
public static PermissionType enumForValue(long value)
-
isDefined
public static Boolean isDefined(long value)
-
-