public enum NFCSouth extends Enum<NFCSouth>
Enum Constant and Description |
---|
BUCCANEERS |
FALCONS |
PANTHERS |
SAINTS |
Modifier and Type | Method and Description |
---|---|
static NFCSouth |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NFCSouth[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NFCSouth FALCONS
public static final NFCSouth PANTHERS
public static final NFCSouth BUCCANEERS
public static final NFCSouth SAINTS
public static NFCSouth[] values()
for (NFCSouth c : NFCSouth.values()) System.out.println(c);
public static NFCSouth 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 © 2009–2023 Oracle Corporation. All rights reserved.