forked from External/mage
renamed gender class to pronoun class
This commit is contained in:
parent
47bbb70675
commit
6eda309765
10 changed files with 57 additions and 49 deletions
33
Mage/src/main/java/mage/abilities/Pronoun.java
Normal file
33
Mage/src/main/java/mage/abilities/Pronoun.java
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
package mage.abilities;
|
||||
|
||||
/**
|
||||
* Created by IGOUDT on 5-3-2017.
|
||||
*/
|
||||
public enum Pronoun {
|
||||
HE("he", "him", "his"),
|
||||
SHE("she", "her", "her"),
|
||||
THEY("they", "them", "their"),
|
||||
IT("it", "it", "its");
|
||||
|
||||
private final String subjective;
|
||||
private final String objective;
|
||||
private final String possessive;
|
||||
|
||||
Pronoun(String subjective, String objective, String possessive) {
|
||||
this.subjective = subjective;
|
||||
this.objective = objective;
|
||||
this.possessive = possessive;
|
||||
}
|
||||
|
||||
public String getSubjective() {
|
||||
return subjective;
|
||||
}
|
||||
|
||||
public String getObjective() {
|
||||
return objective;
|
||||
}
|
||||
|
||||
public String getPossessive() {
|
||||
return possessive;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue