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