public enum Interlace extends Enum<Interlace>
Enum Constant and Description |
---|
Adam7
Represents the Adam7 interlace setting, which is used for PNG images.
|
None
No interlace settings are used.
|
Modifier and Type | Method and Description |
---|---|
String |
getValue()
Retrieves the interlace value.
|
static Interlace |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Interlace[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Interlace None
public static final Interlace Adam7
public static Interlace[] values()
for (Interlace c : Interlace.values()) System.out.println(c);
public static Interlace valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getValue()
Copyright © 1982–2022 Adobe Systems Inc.. All rights reserved.