Package org.odpi.openmetadata.repositoryservices.connectors.stores.metadatacollectionstore.properties
Enum HistorySequencingOrder
- java.lang.Object
-
- java.lang.Enum<HistorySequencingOrder>
-
- org.odpi.openmetadata.repositoryservices.connectors.stores.metadatacollectionstore.properties.HistorySequencingOrder
-
- All Implemented Interfaces:
Serializable,Comparable<HistorySequencingOrder>
public enum HistorySequencingOrder extends Enum<HistorySequencingOrder> implements Serializable
HistorySequencingOrder is used for retrieval of history against a metadata collection. It defines how the results should be ordered before they are returned. This is particularly important when the results are to returned over multiple pages since the caller does not have all of the results at once to perform the sort themselves. The sequencing order values are:- FORWARDS: return the historical versions in chronological order, such that the first element is an older version than the second element, which is older than the third, and so on.
- BACKWARDS: return the historical versions in reverse chronological order, such that the first element is a more recent version than the second element, which is more recent than the third, and so on.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()Return the default description of the sequencing order.StringgetName()Return the default name of the sequencing order.intgetOrdinal()Return the numeric representation of the sequencing order.StringtoString()toString() JSON-stylestatic HistorySequencingOrdervalueOf(String name)Returns the enum constant of this type with the specified name.static HistorySequencingOrder[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FORWARDS
public static final HistorySequencingOrder FORWARDS
-
BACKWARDS
public static final HistorySequencingOrder BACKWARDS
-
-
Method Detail
-
values
public static HistorySequencingOrder[] 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 (HistorySequencingOrder c : HistorySequencingOrder.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HistorySequencingOrder 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
-
getOrdinal
public int getOrdinal()
Return the numeric representation of the sequencing order.- Returns:
- int ordinal
-
getName
public String getName()
Return the default name of the sequencing order.- Returns:
- String name
-
getDescription
public String getDescription()
Return the default description of the sequencing order.- Returns:
- String description
-
toString
public String toString()
toString() JSON-style- Overrides:
toStringin classEnum<HistorySequencingOrder>- Returns:
- string description
-
-