Enum AccessRestrictionType
- java.lang.Object
-
- java.lang.Enum<AccessRestrictionType>
-
- org.apache.plc4x.java.opcua.readwrite.AccessRestrictionType
-
- All Implemented Interfaces:
Serializable,Comparable<AccessRestrictionType>
public enum AccessRestrictionType extends Enum<AccessRestrictionType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AccessRestrictionTypeenumForValue(int value)intgetValue()static BooleanisDefined(int value)static AccessRestrictionTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AccessRestrictionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
accessRestrictionTypeNone
public static final AccessRestrictionType accessRestrictionTypeNone
-
accessRestrictionTypeSigningRequired
public static final AccessRestrictionType accessRestrictionTypeSigningRequired
-
accessRestrictionTypeEncryptionRequired
public static final AccessRestrictionType accessRestrictionTypeEncryptionRequired
-
accessRestrictionTypeSessionRequired
public static final AccessRestrictionType accessRestrictionTypeSessionRequired
-
accessRestrictionTypeApplyRestrictionsToBrowse
public static final AccessRestrictionType accessRestrictionTypeApplyRestrictionsToBrowse
-
-
Method Detail
-
values
public static AccessRestrictionType[] 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 (AccessRestrictionType c : AccessRestrictionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccessRestrictionType 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 int getValue()
-
enumForValue
public static AccessRestrictionType enumForValue(int value)
-
isDefined
public static Boolean isDefined(int value)
-
-