public enum InterlaceMethod extends Enum<InterlaceMethod>
Modifier and Type | Method and Description |
---|---|
boolean |
isProgressive() |
static InterlaceMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InterlaceMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InterlaceMethod NONE
public static final InterlaceMethod ADAM7
public static InterlaceMethod[] values()
for (InterlaceMethod c : InterlaceMethod.values()) System.out.println(c);
public static InterlaceMethod 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 boolean isProgressive()
Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.