Enum SiegfriedQueryParams
- java.lang.Object
-
- java.lang.Enum<SiegfriedQueryParams>
-
- fr.gouv.vitam.common.format.identification.siegfried.SiegfriedQueryParams
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SiegfriedQueryParams>
public enum SiegfriedQueryParams extends java.lang.Enum<SiegfriedQueryParams>
Siegfried query parameters (version >= 1.7.10)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BASE64
FORMAT
SCAN_ENTRIES_WITHIN_ZIP
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getParameter()
java.lang.String
getValue()
static SiegfriedQueryParams
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SiegfriedQueryParams[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BASE64
public static final SiegfriedQueryParams BASE64
-
FORMAT
public static final SiegfriedQueryParams FORMAT
-
SCAN_ENTRIES_WITHIN_ZIP
public static final SiegfriedQueryParams SCAN_ENTRIES_WITHIN_ZIP
-
-
Method Detail
-
values
public static SiegfriedQueryParams[] 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 (SiegfriedQueryParams c : SiegfriedQueryParams.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SiegfriedQueryParams 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
-
getParameter
public java.lang.String getParameter()
-
getValue
public java.lang.String getValue()
-
-