public enum SourcePresentationHint extends java.lang.Enum<SourcePresentationHint>
A value of 'deemphasize' can be used to indicate that the source is not available or that it is skipped on stepping.
| Enum Constant and Description |
|---|
DEEMPHASIZE |
EMPHASIZE |
NORMAL |
| Modifier and Type | Method and Description |
|---|---|
static SourcePresentationHint |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SourcePresentationHint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SourcePresentationHint NORMAL
public static final SourcePresentationHint EMPHASIZE
public static final SourcePresentationHint DEEMPHASIZE
public static SourcePresentationHint[] values()
for (SourcePresentationHint c : SourcePresentationHint.values()) System.out.println(c);
public static SourcePresentationHint 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