
public enum ExecutableType extends Enum<ExecutableType>
executable-type xsd type| Enum Constant and Description |
|---|
_ALL |
_CONSTRUCTORS |
_GETTER_METHODS |
_NON_GETTER_METHODS |
_NONE |
| Modifier and Type | Method and Description |
|---|---|
static ExecutableType |
getFromStringValue(String value) |
String |
toString() |
static ExecutableType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutableType _NONE
public static final ExecutableType _CONSTRUCTORS
public static final ExecutableType _NON_GETTER_METHODS
public static final ExecutableType _GETTER_METHODS
public static final ExecutableType _ALL
public static ExecutableType[] values()
for (ExecutableType c : ExecutableType.values()) System.out.println(c);
public static ExecutableType 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 toString()
toString in class Enum<ExecutableType>public static ExecutableType getFromStringValue(String value)
Copyright © 2021 JBoss by Red Hat. All rights reserved.