Package com.yubico.fido.metadata
Class DisplayPNGCharacteristicsDescriptor
- java.lang.Object
-
- com.yubico.fido.metadata.DisplayPNGCharacteristicsDescriptor
-
public final class DisplayPNGCharacteristicsDescriptor extends java.lang.Object
The DisplayPNGCharacteristicsDescriptor describes a PNG image characteristics as defined in the PNG [PNG] spec for IHDR (image header) and PLTE (palette table).
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
DisplayPNGCharacteristicsDescriptor.DisplayPNGCharacteristicsDescriptorBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DisplayPNGCharacteristicsDescriptor.DisplayPNGCharacteristicsDescriptorBuilder
builder()
boolean
equals(java.lang.Object o)
short
getBitDepth()
short
getColorType()
short
getCompression()
short
getFilter()
long
getHeight()
short
getInterlace()
java.util.List<RgbPaletteEntry>
getPlte()
long
getWidth()
int
hashCode()
DisplayPNGCharacteristicsDescriptor.DisplayPNGCharacteristicsDescriptorBuilder
toBuilder()
java.lang.String
toString()
-
-
-
Method Detail
-
builder
public static DisplayPNGCharacteristicsDescriptor.DisplayPNGCharacteristicsDescriptorBuilder builder()
-
toBuilder
public DisplayPNGCharacteristicsDescriptor.DisplayPNGCharacteristicsDescriptorBuilder toBuilder()
-
getWidth
public long getWidth()
-
getHeight
public long getHeight()
-
getBitDepth
public short getBitDepth()
-
getColorType
public short getColorType()
-
getCompression
public short getCompression()
-
getFilter
public short getFilter()
-
getInterlace
public short getInterlace()
-
getPlte
public java.util.List<RgbPaletteEntry> getPlte()
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-