Enum FullAccessPermission
- java.lang.Object
-
- java.lang.Enum<FullAccessPermission>
-
- com.syntifi.near.api.model.accesskey.permission.FullAccessPermission
-
- All Implemented Interfaces:
Permission
,java.io.Serializable
,java.lang.Comparable<FullAccessPermission>
public enum FullAccessPermission extends java.lang.Enum<FullAccessPermission> implements Permission
FullAccessPermission- Since:
- 0.0.1
- Author:
- Alexandre Carvalho, Andre Bertolace
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FULL_ACCESS
-
Field Summary
-
Fields inherited from interface com.syntifi.near.api.model.accesskey.permission.Permission
FULL_ACCESS_PERMISSION, FUNCTION_CALL_PERMISSION
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FullAccessPermission
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FullAccessPermission[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FULL_ACCESS
public static final FullAccessPermission FULL_ACCESS
-
-
Method Detail
-
values
public static FullAccessPermission[] 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 (FullAccessPermission c : FullAccessPermission.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FullAccessPermission 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
-
-