public enum JavaParentType extends Enum<JavaParentType>
| Enum Constant and Description |
|---|
EXTENSION
The "extension" java parent type.
|
IMPLEMENTATION
The "implementation" java parent type.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static JavaParentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JavaParentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JavaParentType EXTENSION
public static final JavaParentType IMPLEMENTATION
public static JavaParentType[] values()
for (JavaParentType c : JavaParentType.values()) System.out.println(c);
public static JavaParentType 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<JavaParentType>Copyright © 2014 Sourceforge. All rights reserved.