public enum RenderProductType extends Enum<RenderProductType>
| Enum Constant and Description |
|---|
Constraints
Vector based rendering showing constraints
|
Raster
Color-coded raster derived from TIN
|
Wireframe
Vector based rendering showing structure of TIN
|
| Modifier and Type | Method and Description |
|---|---|
int |
getStackingOrder() |
static RenderProductType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RenderProductType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderProductType Wireframe
public static final RenderProductType Constraints
public static final RenderProductType Raster
public static RenderProductType[] values()
for (RenderProductType c : RenderProductType.values()) System.out.println(c);
public static RenderProductType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int getStackingOrder()
Copyright © 2019. All rights reserved.