Package org.gcube.dataharvest.datamodel
Enum HarvestedDataKey
- java.lang.Object
-
- java.lang.Enum<HarvestedDataKey>
-
- org.gcube.dataharvest.datamodel.HarvestedDataKey
-
- All Implemented Interfaces:
Serializable,Comparable<HarvestedDataKey>
public enum HarvestedDataKey extends Enum<HarvestedDataKey>
- Author:
- Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it, M. Assante, ISTI-CNR
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetKey()static HarvestedDataKeyvalueOf(String name)Returns the enum constant of this type with the specified name.static HarvestedDataKey[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WORKSPACE_ACCESSES
public static final HarvestedDataKey WORKSPACE_ACCESSES
-
MESSAGES_ACCESSES
public static final HarvestedDataKey MESSAGES_ACCESSES
-
NOTIFICATIONS_ACCESSES
public static final HarvestedDataKey NOTIFICATIONS_ACCESSES
-
PROFILE_ACCESSES
public static final HarvestedDataKey PROFILE_ACCESSES
-
JUPYTER_ACCESSES
public static final HarvestedDataKey JUPYTER_ACCESSES
-
RSTUDIO_ACCESSES
public static final HarvestedDataKey RSTUDIO_ACCESSES
-
CATALOGUE_ACCESSES
public static final HarvestedDataKey CATALOGUE_ACCESSES
-
CATALOGUE_DATASET_LIST_ACCESSES
public static final HarvestedDataKey CATALOGUE_DATASET_LIST_ACCESSES
-
CATALOGUE_DATASET_ACCESSES
public static final HarvestedDataKey CATALOGUE_DATASET_ACCESSES
-
CATALOGUE_RESOURCE_ACCESSES
public static final HarvestedDataKey CATALOGUE_RESOURCE_ACCESSES
-
ACCESSES
public static final HarvestedDataKey ACCESSES
-
USERS
public static final HarvestedDataKey USERS
-
SOCIAL_POSTS
public static final HarvestedDataKey SOCIAL_POSTS
-
SOCIAL_REPLIES
public static final HarvestedDataKey SOCIAL_REPLIES
-
SOCIAL_LIKES
public static final HarvestedDataKey SOCIAL_LIKES
-
METHOD_INVOCATIONS
public static final HarvestedDataKey METHOD_INVOCATIONS
-
-
Method Detail
-
values
public static HarvestedDataKey[] 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 (HarvestedDataKey c : HarvestedDataKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HarvestedDataKey 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
-
getKey
public String getKey()
- Returns:
- the key
-
-