public static enum Framework.Family extends Enum<Framework.Family>
| Modifier and Type | Method and Description |
|---|---|
static Framework.Family |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Framework.Family[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Framework.Family php
public static final Framework.Family cf
public static final Framework.Family dotNet
public static Framework.Family[] values()
for (Framework.Family c : Framework.Family.values()) System.out.println(c);
public static Framework.Family 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 © 2014 JBoss by Red Hat. All Rights Reserved.