public static enum EnumsTestCaseClasses.PublicationFormat extends Enum<EnumsTestCaseClasses.PublicationFormat>
| Modifier and Type | Method and Description |
|---|---|
static EnumsTestCaseClasses.PublicationFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumsTestCaseClasses.PublicationFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumsTestCaseClasses.PublicationFormat HARDBACK
public static final EnumsTestCaseClasses.PublicationFormat SOFTBACK
public static final EnumsTestCaseClasses.PublicationFormat EBOOK
public static EnumsTestCaseClasses.PublicationFormat[] values()
for (EnumsTestCaseClasses.PublicationFormat c : EnumsTestCaseClasses.PublicationFormat.values()) System.out.println(c);
public static EnumsTestCaseClasses.PublicationFormat 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 nullCopyright © 2019 Glasnost. All rights reserved.