public static enum OverviewMarkRenderingHints.Hint extends java.lang.Enum<OverviewMarkRenderingHints.Hint>
| Enum Constant and Description | 
|---|
BORDERLESS
Key for the hint to render the mark in the overview with or without a border. 
 | 
DOTTED_LINE
Key for the hint to render the mark as a dotted line. 
 | 
LINE
Key for the hint to render the mark as a line. 
 | 
THIN
Key for the hint to render the mark thinner (narrower) than normal in the overview. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static OverviewMarkRenderingHints.Hint | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static OverviewMarkRenderingHints.Hint[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final OverviewMarkRenderingHints.Hint BORDERLESS
public static final OverviewMarkRenderingHints.Hint THIN
public static final OverviewMarkRenderingHints.Hint LINE
public static final OverviewMarkRenderingHints.Hint DOTTED_LINE
public static OverviewMarkRenderingHints.Hint[] values()
for (OverviewMarkRenderingHints.Hint c : OverviewMarkRenderingHints.Hint.values()) System.out.println(c);
public static OverviewMarkRenderingHints.Hint 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