public static enum BlockExaminer.PassableState extends Enum<BlockExaminer.PassableState>
Enum Constant and Description |
---|
IGNORE |
PASSABLE |
UNPASSABLE |
Modifier and Type | Method and Description |
---|---|
static BlockExaminer.PassableState |
fromBoolean(boolean b) |
static BlockExaminer.PassableState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlockExaminer.PassableState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockExaminer.PassableState IGNORE
public static final BlockExaminer.PassableState PASSABLE
public static final BlockExaminer.PassableState UNPASSABLE
public static BlockExaminer.PassableState[] values()
for (BlockExaminer.PassableState c : BlockExaminer.PassableState.values()) System.out.println(c);
public static BlockExaminer.PassableState 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 static BlockExaminer.PassableState fromBoolean(boolean b)
Copyright © 2021. All rights reserved.