public enum LetterGrade extends java.lang.Enum<LetterGrade>
| Modifier and Type | Method and Description |
|---|---|
static LetterGrade |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LetterGrade[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LetterGrade A
public static final LetterGrade B
public static final LetterGrade C
public static final LetterGrade D
public static final LetterGrade F
public static LetterGrade[] values()
for (LetterGrade c : LetterGrade.values()) System.out.println(c);
public static LetterGrade valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null