Package org.bukkit.entity
Enum Villager.Type
- java.lang.Object
-
- java.lang.Enum<Villager.Type>
-
- org.bukkit.entity.Villager.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<Villager.Type>
,Keyed
- Enclosing interface:
- Villager
public static enum Villager.Type extends Enum<Villager.Type> implements Keyed
Represents Villager type, usually corresponding to what biome they spawn in.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description NamespacedKey
getKey()
Return the namespaced identifier for this object.static Villager.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static Villager.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DESERT
public static final Villager.Type DESERT
-
JUNGLE
public static final Villager.Type JUNGLE
-
PLAINS
public static final Villager.Type PLAINS
-
SAVANNA
public static final Villager.Type SAVANNA
-
SNOW
public static final Villager.Type SNOW
-
SWAMP
public static final Villager.Type SWAMP
-
TAIGA
public static final Villager.Type TAIGA
-
-
Method Detail
-
values
public static Villager.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Villager.Type c : Villager.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Villager.Type 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 nameNullPointerException
- if the argument is null
-
getKey
@NotNull public NamespacedKey getKey()
Description copied from interface:Keyed
Return the namespaced identifier for this object.
-
-