Uses of Interface
com.mathmaster13.fynotek.Inflection
-
Uses of Inflection in com.mathmaster13.fynotek
Subinterfaces of Inflection in com.mathmaster13.fynotekModifier and TypeInterfaceDescriptioninterface
Represents a specific Fynotek inflection type—namely, a noun case or verb tense.Classes in com.mathmaster13.fynotek that implement InflectionModifier and TypeClassDescriptionstatic enum
Represents Fynotek ablaut.static enum
Represents the tense of a Fynotek verb.static enum
Represents the case of a Fynotek noun.Fields in com.mathmaster13.fynotek declared as InflectionModifier and TypeFieldDescriptionfinal @Nullable Inflection
BaseFynotekWord.inflection
Represents the case or tense that this word is marked with.static final @NotNull Inflection[]
Inflection.values
An array containing all constants that extend this interface.Methods in com.mathmaster13.fynotek with parameters of type InflectionModifier and TypeMethodDescription@NotNull BaseFynotekWord
BaseFynotekWord.inflect
(@Nullable Inflection inflection) Returns a copy of this word inflected for the inflection specified byinflection
.@NotNull FynotekWord
FynotekWord.inflect
(@Nullable Inflection inflection) @NotNull OldFynotekWord
OldFynotekWord.inflect
(@Nullable Inflection inflection) Returns a copy of this word inflected for the inflection specified byinflection
.Constructors in com.mathmaster13.fynotek with parameters of type InflectionModifierConstructorDescriptionBaseFynotekWord
(@NotNull String word, @Nullable Inflection inflection) Converts a String to a BaseFynotekWord, and marks the word as having the specified inflection.FynotekWord
(@NotNull String word, @Nullable Inflection inflection, boolean isProper) Converts a String to a FynotekWord, and marks the word as having the specified inflection.OldFynotekWord
(@NotNull String word, @NotNull Inflection inflection) Converts a String to an OldFynotekWord, and marks the word as having the specified inflection.