Package com.google.cloud.hadoop.util
Enum AccessBoundary.Action
- java.lang.Object
-
- java.lang.Enum<AccessBoundary.Action>
-
- com.google.cloud.hadoop.util.AccessBoundary.Action
-
- All Implemented Interfaces:
Serializable,Comparable<AccessBoundary.Action>
- Enclosing class:
- AccessBoundary
public static enum AccessBoundary.Action extends Enum<AccessBoundary.Action>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CREATE_BUCKETSDELETE_BUCKETSDELETE_OBJECTSEDIT_OBJECTSGET_BUCKETSGET_METADATA_OBJECTSLIST_BUCKETSLIST_OBJECTSREAD_OBJECTSUNSPECIFIED_ACTIONWRITE_OBJECTS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AccessBoundary.ActionvalueOf(String name)Returns the enum constant of this type with the specified name.static AccessBoundary.Action[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATE_BUCKETS
public static final AccessBoundary.Action CREATE_BUCKETS
-
DELETE_BUCKETS
public static final AccessBoundary.Action DELETE_BUCKETS
-
DELETE_OBJECTS
public static final AccessBoundary.Action DELETE_OBJECTS
-
EDIT_OBJECTS
public static final AccessBoundary.Action EDIT_OBJECTS
-
GET_BUCKETS
public static final AccessBoundary.Action GET_BUCKETS
-
GET_METADATA_OBJECTS
public static final AccessBoundary.Action GET_METADATA_OBJECTS
-
LIST_BUCKETS
public static final AccessBoundary.Action LIST_BUCKETS
-
LIST_OBJECTS
public static final AccessBoundary.Action LIST_OBJECTS
-
READ_OBJECTS
public static final AccessBoundary.Action READ_OBJECTS
-
UNSPECIFIED_ACTION
public static final AccessBoundary.Action UNSPECIFIED_ACTION
-
WRITE_OBJECTS
public static final AccessBoundary.Action WRITE_OBJECTS
-
-
Method Detail
-
values
public static AccessBoundary.Action[] 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 (AccessBoundary.Action c : AccessBoundary.Action.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccessBoundary.Action 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
-
-