public static enum ClassBuilderInfo.ClassType extends Enum<ClassBuilderInfo.ClassType>
ClassBuilderInfo is for a CLASS or an INTERFACE.| Modifier and Type | Method and Description |
|---|---|
static ClassBuilderInfo.ClassType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClassBuilderInfo.ClassType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClassBuilderInfo.ClassType INTERFACE
public static final ClassBuilderInfo.ClassType CLASS
public static ClassBuilderInfo.ClassType[] values()
for (ClassBuilderInfo.ClassType c : ClassBuilderInfo.ClassType.values()) System.out.println(c);
public static ClassBuilderInfo.ClassType 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. All rights reserved.