public static enum Renderer.HighlightStyle extends java.lang.Enum<Renderer.HighlightStyle>
| Enum Constant and Description | 
|---|
| COLORHighlighting is performed by rendering 
 objects using a special highlight color, as returned
 by  Renderer.getHighlightColor(float[]). | 
| NONEHighlighting is not supported or is deactivated | 
| Modifier and Type | Method and Description | 
|---|---|
| static Renderer.HighlightStyle | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static Renderer.HighlightStyle[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Renderer.HighlightStyle NONE
public static final Renderer.HighlightStyle COLOR
Renderer.getHighlightColor(float[]).public static Renderer.HighlightStyle[] values()
for (Renderer.HighlightStyle c : Renderer.HighlightStyle.values()) System.out.println(c);
public static Renderer.HighlightStyle 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