Enum ElasticsearchCollections
- java.lang.Object
-
- java.lang.Enum<ElasticsearchCollections>
-
- fr.gouv.vitam.common.database.server.elasticsearch.model.ElasticsearchCollections
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ElasticsearchCollections>
public enum ElasticsearchCollections extends java.lang.Enum<ElasticsearchCollections>
Elasticsearch Collections
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCESS_CONTRACT
Access contract collectionACCESSION_REGISTER_DETAIL
Accession Register detail CollectionACCESSION_REGISTER_SUMMARY
Accession Register summary CollectionACCESSION_REGISTER_SYMBOLIC
Accession Register detail CollectionAGENCIES
Agency collectionARCHIVE_UNIT_PROFILE
Archive unit profile collectionCONTEXT
Context collectionFORMATS
Formats CollectionGRIFFIN
INGEST_CONTRACT
Ingest contract collectionMANAGEMENT_CONTRACT
Management contract collectionOBJECTGROUP
ObjectGroup CollectionONTOLOGY
Ontology collectionOPERATION
Operation CollectionPRESERVATION_SCENARIO
preservationscenario collectionPROFILE
Profile collectionRULES
Rules CollectionSECURITY_PROFILE
Security profile collectionUNIT
Unit Collection
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getIndexName()
java.lang.String
getMapping()
java.io.InputStream
getMappingAsInputStream()
Retrieve Mapping as an inputStreamstatic ElasticsearchCollections
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ElasticsearchCollections[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNIT
public static final ElasticsearchCollections UNIT
Unit Collection
-
OBJECTGROUP
public static final ElasticsearchCollections OBJECTGROUP
ObjectGroup Collection
-
FORMATS
public static final ElasticsearchCollections FORMATS
Formats Collection
-
RULES
public static final ElasticsearchCollections RULES
Rules Collection
-
ACCESSION_REGISTER_SUMMARY
public static final ElasticsearchCollections ACCESSION_REGISTER_SUMMARY
Accession Register summary Collection
-
ACCESSION_REGISTER_SYMBOLIC
public static final ElasticsearchCollections ACCESSION_REGISTER_SYMBOLIC
Accession Register detail Collection
-
ACCESSION_REGISTER_DETAIL
public static final ElasticsearchCollections ACCESSION_REGISTER_DETAIL
Accession Register detail Collection
-
INGEST_CONTRACT
public static final ElasticsearchCollections INGEST_CONTRACT
Ingest contract collection
-
ACCESS_CONTRACT
public static final ElasticsearchCollections ACCESS_CONTRACT
Access contract collection
-
MANAGEMENT_CONTRACT
public static final ElasticsearchCollections MANAGEMENT_CONTRACT
Management contract collection
-
PROFILE
public static final ElasticsearchCollections PROFILE
Profile collection
-
AGENCIES
public static final ElasticsearchCollections AGENCIES
Agency collection
-
CONTEXT
public static final ElasticsearchCollections CONTEXT
Context collection
-
SECURITY_PROFILE
public static final ElasticsearchCollections SECURITY_PROFILE
Security profile collection
-
OPERATION
public static final ElasticsearchCollections OPERATION
Operation Collection
-
ARCHIVE_UNIT_PROFILE
public static final ElasticsearchCollections ARCHIVE_UNIT_PROFILE
Archive unit profile collection
-
ONTOLOGY
public static final ElasticsearchCollections ONTOLOGY
Ontology collection
-
PRESERVATION_SCENARIO
public static final ElasticsearchCollections PRESERVATION_SCENARIO
preservationscenario collection
-
GRIFFIN
public static final ElasticsearchCollections GRIFFIN
-
-
Method Detail
-
values
public static ElasticsearchCollections[] 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 (ElasticsearchCollections c : ElasticsearchCollections.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ElasticsearchCollections 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
-
getIndexName
public java.lang.String getIndexName()
-
getMapping
public java.lang.String getMapping()
-
getMappingAsInputStream
public java.io.InputStream getMappingAsInputStream()
Retrieve Mapping as an inputStream- Returns:
- Mapping as an InputStream
-
-