com.didisoft.pgp
Enum CompressionAlgorithm.Enum
java.lang.Object
java.lang.Enum<CompressionAlgorithm.Enum>
com.didisoft.pgp.CompressionAlgorithm.Enum
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<CompressionAlgorithm.Enum>
- Enclosing interface:
- CompressionAlgorithm
public static enum CompressionAlgorithm.Enum
- extends java.lang.Enum<CompressionAlgorithm.Enum>
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
ZLIB
public static final CompressionAlgorithm.Enum ZLIB
ZIP
public static final CompressionAlgorithm.Enum ZIP
BZIP2
public static final CompressionAlgorithm.Enum BZIP2
UNCOMPRESSED
public static final CompressionAlgorithm.Enum UNCOMPRESSED
values
public static CompressionAlgorithm.Enum[] 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 (CompressionAlgorithm.Enum c : CompressionAlgorithm.Enum.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static CompressionAlgorithm.Enum 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
fromString
public CompressionAlgorithm.Enum fromString(java.lang.String compression)
toString
public java.lang.String toString()
- Overrides:
toString
in class java.lang.Enum<CompressionAlgorithm.Enum>
Copyright © 2006-2017 DidiSoft Ltd. All Rights Reserved.