Package org.restheart.exchange
Enum ExchangeKeys.TYPE
- java.lang.Object
-
- java.lang.Enum<ExchangeKeys.TYPE>
-
- org.restheart.exchange.ExchangeKeys.TYPE
-
- All Implemented Interfaces:
Serializable,Comparable<ExchangeKeys.TYPE>
- Enclosing interface:
- ExchangeKeys
public static enum ExchangeKeys.TYPE extends Enum<ExchangeKeys.TYPE>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExchangeKeys.TYPEvalueOf(String name)Returns the enum constant of this type with the specified name.static ExchangeKeys.TYPE[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INVALID
public static final ExchangeKeys.TYPE INVALID
-
ROOT
public static final ExchangeKeys.TYPE ROOT
-
ROOT_SIZE
public static final ExchangeKeys.TYPE ROOT_SIZE
-
DB
public static final ExchangeKeys.TYPE DB
-
DB_SIZE
public static final ExchangeKeys.TYPE DB_SIZE
-
DB_META
public static final ExchangeKeys.TYPE DB_META
-
CHANGE_STREAM
public static final ExchangeKeys.TYPE CHANGE_STREAM
-
COLLECTION
public static final ExchangeKeys.TYPE COLLECTION
-
COLLECTION_SIZE
public static final ExchangeKeys.TYPE COLLECTION_SIZE
-
COLLECTION_META
public static final ExchangeKeys.TYPE COLLECTION_META
-
DOCUMENT
public static final ExchangeKeys.TYPE DOCUMENT
-
COLLECTION_INDEXES
public static final ExchangeKeys.TYPE COLLECTION_INDEXES
-
INDEX
public static final ExchangeKeys.TYPE INDEX
-
FILES_BUCKET
public static final ExchangeKeys.TYPE FILES_BUCKET
-
FILES_BUCKET_SIZE
public static final ExchangeKeys.TYPE FILES_BUCKET_SIZE
-
FILES_BUCKET_META
public static final ExchangeKeys.TYPE FILES_BUCKET_META
-
FILE
public static final ExchangeKeys.TYPE FILE
-
FILE_BINARY
public static final ExchangeKeys.TYPE FILE_BINARY
-
AGGREGATION
public static final ExchangeKeys.TYPE AGGREGATION
-
SCHEMA
public static final ExchangeKeys.TYPE SCHEMA
-
SCHEMA_STORE
public static final ExchangeKeys.TYPE SCHEMA_STORE
-
SCHEMA_STORE_SIZE
public static final ExchangeKeys.TYPE SCHEMA_STORE_SIZE
-
SCHEMA_STORE_META
public static final ExchangeKeys.TYPE SCHEMA_STORE_META
-
BULK_DOCUMENTS
public static final ExchangeKeys.TYPE BULK_DOCUMENTS
-
METRICS
public static final ExchangeKeys.TYPE METRICS
-
SESSION
public static final ExchangeKeys.TYPE SESSION
-
SESSIONS
public static final ExchangeKeys.TYPE SESSIONS
-
TRANSACTIONS
public static final ExchangeKeys.TYPE TRANSACTIONS
-
TRANSACTION
public static final ExchangeKeys.TYPE TRANSACTION
-
-
Method Detail
-
values
public static ExchangeKeys.TYPE[] 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 (ExchangeKeys.TYPE c : ExchangeKeys.TYPE.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExchangeKeys.TYPE 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
-
-