org.icepdf.core.pobjects.graphics
Enum ImageReferenceFactory.ImageReference

java.lang.Object
  extended by java.lang.Enum<ImageReferenceFactory.ImageReference>
      extended by org.icepdf.core.pobjects.graphics.ImageReferenceFactory.ImageReference
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ImageReferenceFactory.ImageReference>
Enclosing class:
ImageReferenceFactory

public static enum ImageReferenceFactory.ImageReference
extends java.lang.Enum<ImageReferenceFactory.ImageReference>


Enum Constant Summary
DEFAULT
           
MIP_MAP
           
SCALED
           
SMOOTH_SCALED
           
 
Method Summary
static ImageReferenceFactory.ImageReference valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ImageReferenceFactory.ImageReference[] 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

DEFAULT

public static final ImageReferenceFactory.ImageReference DEFAULT

SCALED

public static final ImageReferenceFactory.ImageReference SCALED

MIP_MAP

public static final ImageReferenceFactory.ImageReference MIP_MAP

SMOOTH_SCALED

public static final ImageReferenceFactory.ImageReference SMOOTH_SCALED
Method Detail

values

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

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

valueOf

public static ImageReferenceFactory.ImageReference 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