public enum PathNodeType extends java.lang.Enum<PathNodeType>
修飾子とタイプ | メソッドと説明 |
---|---|
float |
getPriority() |
static PathNodeType |
valueOf(java.lang.String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static PathNodeType[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final PathNodeType BLOCKED
public static final PathNodeType OPEN
public static final PathNodeType WALKABLE
public static final PathNodeType TRAPDOOR
public static final PathNodeType FENCE
public static final PathNodeType LAVA
public static final PathNodeType WATER
public static final PathNodeType WATER_BORDER
public static final PathNodeType RAIL
public static final PathNodeType DANGER_FIRE
public static final PathNodeType DAMAGE_FIRE
public static final PathNodeType DANGER_CACTUS
public static final PathNodeType DAMAGE_CACTUS
public static final PathNodeType DANGER_OTHER
public static final PathNodeType DAMAGE_OTHER
public static final PathNodeType DOOR_OPEN
public static final PathNodeType DOOR_WOOD_CLOSED
public static final PathNodeType DOOR_IRON_CLOSED
public static final PathNodeType BREACH
public static final PathNodeType LEAVES
public static final PathNodeType STICKY_HONEY
public static final PathNodeType COCOA
public static PathNodeType[] values()
for(PathNodeType c: PathNodeType.values()) System.out.println(c);
public static PathNodeType valueOf(java.lang.String name)
name
- 返される列挙型定数の名前。java.lang.IllegalArgumentException
- この列挙型に、指定した名前の定数がない場合java.lang.NullPointerException
- 引数がnullの場合public float getPriority()