Enum OfferCollections
- java.lang.Object
-
- java.lang.Enum<OfferCollections>
-
- fr.gouv.vitam.storage.engine.common.collection.OfferCollections
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<OfferCollections>
public enum OfferCollections extends java.lang.Enum<OfferCollections>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCESS_REQUEST_REFERENTIAL
COMPACTED_OFFER_LOG
OFFER_LOG
OFFER_SEQUENCE
TAPE_ARCHIVE_REFERENTIAL
TAPE_CATALOG
TAPE_OBJECT_REFERENTIAL
TAPE_QUEUE_MESSAGE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Class<?>
getClazz()
java.lang.String
getName()
void
setPrefix(java.lang.String prefix)
static OfferCollections
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OfferCollections[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OFFER_LOG
public static final OfferCollections OFFER_LOG
-
COMPACTED_OFFER_LOG
public static final OfferCollections COMPACTED_OFFER_LOG
-
OFFER_SEQUENCE
public static final OfferCollections OFFER_SEQUENCE
-
TAPE_CATALOG
public static final OfferCollections TAPE_CATALOG
-
TAPE_QUEUE_MESSAGE
public static final OfferCollections TAPE_QUEUE_MESSAGE
-
TAPE_OBJECT_REFERENTIAL
public static final OfferCollections TAPE_OBJECT_REFERENTIAL
-
TAPE_ARCHIVE_REFERENTIAL
public static final OfferCollections TAPE_ARCHIVE_REFERENTIAL
-
ACCESS_REQUEST_REFERENTIAL
public static final OfferCollections ACCESS_REQUEST_REFERENTIAL
-
-
Method Detail
-
values
public static OfferCollections[] 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 (OfferCollections c : OfferCollections.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OfferCollections 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
-
getClazz
public java.lang.Class<?> getClazz()
-
getName
public java.lang.String getName()
-
setPrefix
public void setPrefix(java.lang.String prefix)
-
-