Enum AbstractStorageUsageRecord.DataType
- java.lang.Object
-
- java.lang.Enum<AbstractStorageUsageRecord.DataType>
-
- org.gcube.accounting.datamodel.basetypes.AbstractStorageUsageRecord.DataType
-
- All Implemented Interfaces:
Serializable,Comparable<AbstractStorageUsageRecord.DataType>
- Enclosing class:
- AbstractStorageUsageRecord
public static enum AbstractStorageUsageRecord.DataType extends Enum<AbstractStorageUsageRecord.DataType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractStorageUsageRecord.DataTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AbstractStorageUsageRecord.DataType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STORAGE
public static final AbstractStorageUsageRecord.DataType STORAGE
-
TREE
public static final AbstractStorageUsageRecord.DataType TREE
-
GEO
public static final AbstractStorageUsageRecord.DataType GEO
-
DATABASE
public static final AbstractStorageUsageRecord.DataType DATABASE
-
LOCAL
public static final AbstractStorageUsageRecord.DataType LOCAL
-
OTHER
public static final AbstractStorageUsageRecord.DataType OTHER
-
JUPYTER
public static final AbstractStorageUsageRecord.DataType JUPYTER
-
KUBERNETES
public static final AbstractStorageUsageRecord.DataType KUBERNETES
-
-
Method Detail
-
values
public static AbstractStorageUsageRecord.DataType[] 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 (AbstractStorageUsageRecord.DataType c : AbstractStorageUsageRecord.DataType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractStorageUsageRecord.DataType 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
-
-