Serializable, Comparable<VillagerCareerChangeEvent.ChangeReason>public static enum VillagerCareerChangeEvent.ChangeReason extends Enum<VillagerCareerChangeEvent.ChangeReason>
| Enum Constant | Description | 
|---|---|
| EMPLOYED | Villager gained employment. | 
| LOSING_JOB | Villager lost their job due to too little experience. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| static VillagerCareerChangeEvent.ChangeReason | valueOf(String name) | Returns the enum constant of this type with the specified name. | 
| static VillagerCareerChangeEvent.ChangeReason[] | values() | Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final VillagerCareerChangeEvent.ChangeReason LOSING_JOB
public static final VillagerCareerChangeEvent.ChangeReason EMPLOYED
public static VillagerCareerChangeEvent.ChangeReason[] values()
for (VillagerCareerChangeEvent.ChangeReason c : VillagerCareerChangeEvent.ChangeReason.values()) System.out.println(c);
public static VillagerCareerChangeEvent.ChangeReason 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 nullCopyright © 2020. All rights reserved.