org.deegree.feature.persistence.sql.blob
Enum BlobCodec.Compression
java.lang.Object
java.lang.Enum<BlobCodec.Compression>
org.deegree.feature.persistence.sql.blob.BlobCodec.Compression
- All Implemented Interfaces:
- Serializable, Comparable<BlobCodec.Compression>
- Enclosing class:
- BlobCodec
public static enum BlobCodec.Compression
- extends Enum<BlobCodec.Compression>
NONE
public static final BlobCodec.Compression NONE
GZIP
public static final BlobCodec.Compression GZIP
FAST_INFOSET
public static final BlobCodec.Compression FAST_INFOSET
values
public static BlobCodec.Compression[] 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 (BlobCodec.Compression c : BlobCodec.Compression.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static BlobCodec.Compression valueOf(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:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
Copyright © 2011. All Rights Reserved.