Package com.drew.metadata.bmp
Enum BmpHeaderDirectory.RenderingIntent
- java.lang.Object
-
- java.lang.Enum<BmpHeaderDirectory.RenderingIntent>
-
- com.drew.metadata.bmp.BmpHeaderDirectory.RenderingIntent
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<BmpHeaderDirectory.RenderingIntent>
- Enclosing class:
- BmpHeaderDirectory
public static enum BmpHeaderDirectory.RenderingIntent extends java.lang.Enum<BmpHeaderDirectory.RenderingIntent>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LCS_GM_ABS_COLORIMETRICMatch, Absolute ColorimetricLCS_GM_BUSINESSGraphic, SaturationLCS_GM_GRAPHICSProof, Relative ColorimetricLCS_GM_IMAGESPicture, Perceptual
-
Field Summary
Fields Modifier and Type Field Description private intvalue
-
Constructor Summary
Constructors Modifier Constructor Description privateRenderingIntent(int value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetValue()java.lang.StringtoString()static BmpHeaderDirectory.RenderingIntenttypeOf(long value)static BmpHeaderDirectory.RenderingIntentvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static BmpHeaderDirectory.RenderingIntent[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LCS_GM_BUSINESS
public static final BmpHeaderDirectory.RenderingIntent LCS_GM_BUSINESS
Graphic, Saturation
-
LCS_GM_GRAPHICS
public static final BmpHeaderDirectory.RenderingIntent LCS_GM_GRAPHICS
Proof, Relative Colorimetric
-
LCS_GM_IMAGES
public static final BmpHeaderDirectory.RenderingIntent LCS_GM_IMAGES
Picture, Perceptual
-
LCS_GM_ABS_COLORIMETRIC
public static final BmpHeaderDirectory.RenderingIntent LCS_GM_ABS_COLORIMETRIC
Match, Absolute Colorimetric
-
-
Method Detail
-
values
public static BmpHeaderDirectory.RenderingIntent[] 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 (BmpHeaderDirectory.RenderingIntent c : BmpHeaderDirectory.RenderingIntent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BmpHeaderDirectory.RenderingIntent 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 namejava.lang.NullPointerException- if the argument is null
-
getValue
public int getValue()
-
typeOf
public static BmpHeaderDirectory.RenderingIntent typeOf(long value)
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<BmpHeaderDirectory.RenderingIntent>
-
-