public static enum VideoObjectVisualisation.DrawType extends Enum<VideoObjectVisualisation.DrawType>
| Enum Constant and Description |
|---|
DOTS
Draw the point list as a point cloud
|
| Modifier and Type | Method and Description |
|---|---|
abstract void |
draw(MBFImage vis,
int xoffset,
int yoffset,
PointList pl)
Draw the point list into the given visualisation at the given offset.
|
static VideoObjectVisualisation.DrawType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VideoObjectVisualisation.DrawType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VideoObjectVisualisation.DrawType DOTS
public static VideoObjectVisualisation.DrawType[] values()
for (VideoObjectVisualisation.DrawType c : VideoObjectVisualisation.DrawType.values()) System.out.println(c);
public static VideoObjectVisualisation.DrawType 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 null