public static enum RayTrackResult.Type extends java.lang.Enum<RayTrackResult.Type>
| Modifier and Type | Method and Description | 
|---|---|
| static RayTrackResult.Type | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static RayTrackResult.Type[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final RayTrackResult.Type MISS
public static final RayTrackResult.Type BLOCK
public static final RayTrackResult.Type ENTITY
public static RayTrackResult.Type[] values()
for (RayTrackResult.Type c : RayTrackResult.Type.values()) System.out.println(c);
public static RayTrackResult.Type valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null