- java.lang.Object
-
- java.lang.Enum<Logical.logicalOperations>
-
- io.github.jopenlibs.vault.api.Logical.logicalOperations
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Logical.logicalOperations>
- Enclosing class:
- Logical
public static enum Logical.logicalOperations extends java.lang.Enum<Logical.logicalOperations>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Logical.logicalOperations
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Logical.logicalOperations[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
authentication
public static final Logical.logicalOperations authentication
-
deleteV1
public static final Logical.logicalOperations deleteV1
-
deleteV2
public static final Logical.logicalOperations deleteV2
-
destroy
public static final Logical.logicalOperations destroy
-
listV1
public static final Logical.logicalOperations listV1
-
listV2
public static final Logical.logicalOperations listV2
-
readV1
public static final Logical.logicalOperations readV1
-
readV2
public static final Logical.logicalOperations readV2
-
writeV1
public static final Logical.logicalOperations writeV1
-
writeV2
public static final Logical.logicalOperations writeV2
-
unDelete
public static final Logical.logicalOperations unDelete
-
mount
public static final Logical.logicalOperations mount
-
-
Method Detail
-
values
public static Logical.logicalOperations[] 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 (Logical.logicalOperations c : Logical.logicalOperations.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Logical.logicalOperations 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
-
-