public enum ExecuteOn extends Enum<ExecuteOn>
Modifier and Type | Method and Description |
---|---|
boolean |
axes() |
boolean |
matrix() |
static ExecuteOn |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecuteOn[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecuteOn BOTH
public static final ExecuteOn MATRIX
public static final ExecuteOn AXES
public static ExecuteOn[] values()
for (ExecuteOn c : ExecuteOn.values()) System.out.println(c);
public static ExecuteOn 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 boolean matrix()
public boolean axes()
Copyright © 2011–2022. All rights reserved.