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 SummaryEnum Constants Enum Constant Description BATCH_PROCESSINGBULK_UPDATEGET_BY_IDMASS_UPDATERECLASSIFICATION_QUERYSELECT_MULTIPLESELECT_SINGLEUPDATE_BY_ID
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetFilename()static DslSchemavalueOf(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_MULTIPLEpublic static final DslSchema SELECT_MULTIPLE 
 - 
SELECT_SINGLEpublic static final DslSchema SELECT_SINGLE 
 - 
BATCH_PROCESSINGpublic static final DslSchema BATCH_PROCESSING 
 - 
GET_BY_IDpublic static final DslSchema GET_BY_ID 
 - 
BULK_UPDATEpublic static final DslSchema BULK_UPDATE 
 - 
UPDATE_BY_IDpublic static final DslSchema UPDATE_BY_ID 
 - 
MASS_UPDATEpublic static final DslSchema MASS_UPDATE 
 - 
RECLASSIFICATION_QUERYpublic static final DslSchema RECLASSIFICATION_QUERY 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- java.lang.NullPointerException- if the argument is null
 
 - 
getFilenamepublic java.lang.String getFilename() 
 
- 
 
-