com.didisoft.pgp
Enum CompressionAlgorithm.Enum

java.lang.Object
  extended by java.lang.Enum<CompressionAlgorithm.Enum>
      extended by 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>


Enum Constant Summary
BZIP2
           
UNCOMPRESSED
           
ZIP
           
ZLIB
           
 
Method Summary
 CompressionAlgorithm.Enum fromString(java.lang.String compression)
           
 java.lang.String toString()
           
static CompressionAlgorithm.Enum valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CompressionAlgorithm.Enum[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
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
 

Enum Constant Detail

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
Method Detail

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.