Package geomss.j3d
Enum RenderType
- java.lang.Object
-
- java.lang.Enum<RenderType>
-
- geomss.j3d.RenderType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<RenderType>
public enum RenderType extends java.lang.Enum<RenderType>
An enumeration of render type codes.Modified by: Joseph A.Huwaldt
- Version:
- September 6, 2015
- Author:
- Joseph A. Huwaldt, Date: April 18, 2009
-
-
Enum Constant Summary
Enum Constants Enum Constant Description POINTS
SOLID
SOLID_PLUS_WIREFRAME
STRINGS
WIREFRAME
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RenderType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RenderType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SOLID_PLUS_WIREFRAME
public static final RenderType SOLID_PLUS_WIREFRAME
-
SOLID
public static final RenderType SOLID
-
WIREFRAME
public static final RenderType WIREFRAME
-
STRINGS
public static final RenderType STRINGS
-
POINTS
public static final RenderType POINTS
-
-
Method Detail
-
values
public static RenderType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RenderType c : RenderType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RenderType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-