Enum Class M.Mood

java.lang.Object
java.lang.Enum<M.Mood>
org.fa.tei.jaxb.facustomization.M.Mood
All Implemented Interfaces:
Serializable, Comparable<M.Mood>, Constable
Enclosing class:
M

public static enum M.Mood extends Enum<M.Mood>
https://universaldependencies.org/u/feat/Mood.html Mood is a feature that expresses modality and subclassifies finite verb forms.

Java class for null.

The following schema fragment specifies the expected content contained within this class.

 <simpleType>
   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
     <enumeration value="imp"/>
     <enumeration value="sub"/>
     <enumeration value="ind"/>
   </restriction>
 </simpleType>
 
  • Enum Constant Details

    • imp

      public static final M.Mood imp
      The speaker uses imperative to order or ask the addressee to do the action of the verb.
    • sub

      public static final M.Mood sub
      The subjunctive mood is used under certain circumstances in subordinate clauses, typically for actions that are subjective or otherwise uncertain.
    • ind

      public static final M.Mood ind
      A verb in indicative merely states that something happens, has happened or will happen.
  • Method Details

    • values

      public static M.Mood[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static M.Mood valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • value

      public String value()
    • fromValue

      public static M.Mood fromValue(String v)