Package fr.gouv.vitam.common.dsl.schema
Enum DslSchema
- java.lang.Object
-
- java.lang.Enum<DslSchema>
-
- fr.gouv.vitam.common.dsl.schema.DslSchema
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BATCH_PROCESSING
BULK_UPDATE
GET_BY_ID
MASS_UPDATE
RECLASSIFICATION_QUERY
SELECT_MULTIPLE
SELECT_SINGLE
UPDATE_BY_ID
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getFilename()
static DslSchema
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DslSchema[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SELECT_MULTIPLE
public static final DslSchema SELECT_MULTIPLE
-
SELECT_SINGLE
public static final DslSchema SELECT_SINGLE
-
BATCH_PROCESSING
public static final DslSchema BATCH_PROCESSING
-
GET_BY_ID
public static final DslSchema GET_BY_ID
-
BULK_UPDATE
public static final DslSchema BULK_UPDATE
-
UPDATE_BY_ID
public static final DslSchema UPDATE_BY_ID
-
MASS_UPDATE
public static final DslSchema MASS_UPDATE
-
RECLASSIFICATION_QUERY
public static final DslSchema RECLASSIFICATION_QUERY
-
-
Method Detail
-
values
public static DslSchema[] 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 (DslSchema c : DslSchema.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DslSchema 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 namejava.lang.NullPointerException
- if the argument is null
-
getFilename
public java.lang.String getFilename()
-
-