Class ImageRepresentation
- java.lang.Object
-
- org.apache.xmlgraphics.image.loader.pipeline.ImageRepresentation
-
- All Implemented Interfaces:
java.lang.Comparable
,Vertex
public class ImageRepresentation extends java.lang.Object implements Vertex
This class represents a combination of MIME type and an image flavor. It is used in conjunction with Dijkstra's algorithm to find and construct a conversion pipeline for images.
-
-
Field Summary
Fields Modifier and Type Field Description private ImageFlavor
flavor
-
Constructor Summary
Constructors Constructor Description ImageRepresentation(ImageFlavor flavor)
Main constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(java.lang.Object obj)
boolean
equals(java.lang.Object obj)
ImageFlavor
getFlavor()
Returns the image flavor.int
hashCode()
java.lang.String
toString()
-
-
-
Field Detail
-
flavor
private ImageFlavor flavor
-
-
Constructor Detail
-
ImageRepresentation
public ImageRepresentation(ImageFlavor flavor)
Main constructor- Parameters:
flavor
- the image flavor
-
-
Method Detail
-
getFlavor
public ImageFlavor getFlavor()
Returns the image flavor.- Returns:
- the image flavor
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
compareTo
public int compareTo(java.lang.Object obj)
- Specified by:
compareTo
in interfacejava.lang.Comparable
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-