Enum AccountingFields
- java.lang.Object
-
- java.lang.Enum<AccountingFields>
-
- org.gcube.data.access.storagehub.accounting.AccountingFields
-
- All Implemented Interfaces:
Serializable,Comparable<AccountingFields>
public enum AccountingFields extends Enum<AccountingFields>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATEFOLDER_ITEM_TYPEFROM_PATHITEM_NAMEITEM_TYPEMEMBERSMIME_TYPENEW_ITEM_NAMEOLD_ITEM_NAMEUSERVERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AccountingFieldsvalueOf(String name)Returns the enum constant of this type with the specified name.static AccountingFields[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
USER
public static final AccountingFields USER
-
DATE
public static final AccountingFields DATE
-
ITEM_NAME
public static final AccountingFields ITEM_NAME
-
FROM_PATH
public static final AccountingFields FROM_PATH
-
OLD_ITEM_NAME
public static final AccountingFields OLD_ITEM_NAME
-
NEW_ITEM_NAME
public static final AccountingFields NEW_ITEM_NAME
-
MEMBERS
public static final AccountingFields MEMBERS
-
FOLDER_ITEM_TYPE
public static final AccountingFields FOLDER_ITEM_TYPE
-
MIME_TYPE
public static final AccountingFields MIME_TYPE
-
ITEM_TYPE
public static final AccountingFields ITEM_TYPE
-
VERSION
public static final AccountingFields VERSION
-
-
Method Detail
-
values
public static AccountingFields[] 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 (AccountingFields c : AccountingFields.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccountingFields 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
-
-