public enum ImplementationInfo extends Enum<ImplementationInfo>
Enum Constant and Description |
---|
IMPLEMENTATION_DEFAULT_PROVIDED
Default metod.
|
IMPLEMENTATION_MAGIC
Synthetic method that belongs to no interface where implemention is optional (used for readResolve etc).
|
IMPLEMENTATION_MISSING
Not implemented.
|
IMPLEMENTATION_PROVIDED_BY_BASE_OBJECT
Implemented by base class.
|
IMPLEMENTATION_PROVIDED_BY_THIS_OBJECT
Implemented by the object holding the method or at least assumed implemented by generated class if this is the object holding the method.
|
Modifier and Type | Method and Description |
---|---|
static ImplementationInfo |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImplementationInfo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImplementationInfo IMPLEMENTATION_MISSING
public static final ImplementationInfo IMPLEMENTATION_PROVIDED_BY_BASE_OBJECT
public static final ImplementationInfo IMPLEMENTATION_DEFAULT_PROVIDED
public static final ImplementationInfo IMPLEMENTATION_PROVIDED_BY_THIS_OBJECT
public static final ImplementationInfo IMPLEMENTATION_MAGIC
public static ImplementationInfo[] values()
for (ImplementationInfo c : ImplementationInfo.values()) System.out.println(c);
public static ImplementationInfo 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 null
Version 2.0.0 generated on 2014-11-22 at 09:45 - (C) 41concepts Aps. Refer to project homepage valjogen.41concepts.com for more information.