public enum SizeType extends Enum<SizeType>
Modifier and Type | Class and Description |
---|---|
static class |
SizeType.Adapter |
Enum Constant and Description |
---|
A3PAPER |
A4PAPER |
B4ISOPAPER |
B4JISPAPER |
B5ISOPAPER |
B5JISPAPER |
BANNER |
CUSTOM |
HAGAKICARD |
LEDGER |
LETTERPAPER |
ONSCREEN |
ONSCREEN16X10 |
ONSCREEN16X9 |
OVERHEAD |
SLIDE35MM |
WIDESCREEN |
Modifier and Type | Method and Description |
---|---|
static SizeType |
fromValue(String text) |
String |
getValue() |
static SizeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SizeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SizeType ONSCREEN
public static final SizeType LETTERPAPER
public static final SizeType A4PAPER
public static final SizeType SLIDE35MM
public static final SizeType OVERHEAD
public static final SizeType BANNER
public static final SizeType CUSTOM
public static final SizeType LEDGER
public static final SizeType A3PAPER
public static final SizeType B4ISOPAPER
public static final SizeType B5ISOPAPER
public static final SizeType B4JISPAPER
public static final SizeType B5JISPAPER
public static final SizeType HAGAKICARD
public static final SizeType ONSCREEN16X9
public static final SizeType ONSCREEN16X10
public static final SizeType WIDESCREEN
public static SizeType[] values()
for (SizeType c : SizeType.values()) System.out.println(c);
public static SizeType 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 © 2021. All rights reserved.