org.gcube.tools.sam.reports.informationsystem
Enum ISOperationReport.ISOperations
java.lang.Object
java.lang.Enum<ISOperationReport.ISOperations>
org.gcube.tools.sam.reports.informationsystem.ISOperationReport.ISOperations
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<ISOperationReport.ISOperations>
- Enclosing class:
- ISOperationReport
public static enum ISOperationReport.ISOperations
- extends java.lang.Enum<ISOperationReport.ISOperations>
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
CREATE_PROFILE
public static final ISOperationReport.ISOperations CREATE_PROFILE
UPDATE_PROFILE
public static final ISOperationReport.ISOperations UPDATE_PROFILE
DELETE_PROFILE
public static final ISOperationReport.ISOperations DELETE_PROFILE
SIMPLE_QUERY_SEQUENTIAL
public static final ISOperationReport.ISOperations SIMPLE_QUERY_SEQUENTIAL
COMPLEX_QUERY_SEQUENTIAL
public static final ISOperationReport.ISOperations COMPLEX_QUERY_SEQUENTIAL
SIMPLE_QUERY_PARALLEL
public static final ISOperationReport.ISOperations SIMPLE_QUERY_PARALLEL
COMPLEX_QUERY_PARALLEL
public static final ISOperationReport.ISOperations COMPLEX_QUERY_PARALLEL
REGISTER_TOPICS
public static final ISOperationReport.ISOperations REGISTER_TOPICS
UNREGISTER_TOPICS
public static final ISOperationReport.ISOperations UNREGISTER_TOPICS
SUBSCRIBE_TO_TOPIC
public static final ISOperationReport.ISOperations SUBSCRIBE_TO_TOPIC
REMOVE_SUBSCRIPTION
public static final ISOperationReport.ISOperations REMOVE_SUBSCRIPTION
values
public static ISOperationReport.ISOperations[] 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 (ISOperationReport.ISOperations c : ISOperationReport.ISOperations.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ISOperationReport.ISOperations 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 name
java.lang.NullPointerException
- if the argument is null
toString
public java.lang.String toString()
- Overrides:
toString
in class java.lang.Enum<ISOperationReport.ISOperations>