com.github.junrar.unpack.vm
Enum VMStandardFilters

java.lang.Object
  extended by java.lang.Enum<VMStandardFilters>
      extended by com.github.junrar.unpack.vm.VMStandardFilters
All Implemented Interfaces:
Serializable, Comparable<VMStandardFilters>

public enum VMStandardFilters
extends Enum<VMStandardFilters>

DOCUMENT ME

Version:
$LastChangedRevision$
Author:
$LastChangedBy$

Enum Constant Summary
VMSF_AUDIO
           
VMSF_DELTA
           
VMSF_E8
           
VMSF_E8E9
           
VMSF_ITANIUM
           
VMSF_NONE
           
VMSF_RGB
           
VMSF_UPCASE
           
 
Method Summary
 boolean equals(int filter)
           
static VMStandardFilters findFilter(int filter)
           
 int getFilter()
           
static VMStandardFilters valueOf(String name)
          Returns the enum constant of this type with the specified name.
static VMStandardFilters[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

VMSF_NONE

public static final VMStandardFilters VMSF_NONE

VMSF_E8

public static final VMStandardFilters VMSF_E8

VMSF_E8E9

public static final VMStandardFilters VMSF_E8E9

VMSF_ITANIUM

public static final VMStandardFilters VMSF_ITANIUM

VMSF_RGB

public static final VMStandardFilters VMSF_RGB

VMSF_AUDIO

public static final VMStandardFilters VMSF_AUDIO

VMSF_DELTA

public static final VMStandardFilters VMSF_DELTA

VMSF_UPCASE

public static final VMStandardFilters VMSF_UPCASE
Method Detail

values

public static VMStandardFilters[] 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 (VMStandardFilters c : VMStandardFilters.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static VMStandardFilters 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

getFilter

public int getFilter()

equals

public boolean equals(int filter)

findFilter

public static VMStandardFilters findFilter(int filter)


Copyright © 2012. All Rights Reserved.