lejos.nxt.addon
Enum IRSeekerV2.Mode
java.lang.Object
java.lang.Enum<IRSeekerV2.Mode>
lejos.nxt.addon.IRSeekerV2.Mode
- All Implemented Interfaces:
- Comparable<IRSeekerV2.Mode>
- Enclosing class:
- IRSeekerV2
public static enum IRSeekerV2.Mode
- extends Enum<IRSeekerV2.Mode>
Enum Constant Summary |
AC
|
DC
|
Method Summary |
static IRSeekerV2.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static IRSeekerV2.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
AC
public static final IRSeekerV2.Mode AC
DC
public static final IRSeekerV2.Mode DC
values
public static final IRSeekerV2.Mode[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(IRSeekerV2.Mode c : IRSeekerV2.Mode.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static IRSeekerV2.Mode valueOf(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:
IllegalArgumentException
- if this enum type has no constant
with the specified name