Enum Join.Mood

  • All Implemented Interfaces:
    Serializable, Comparable<Join.Mood>
    Enclosing class:
    Join

    public static enum Join.Mood
    extends Enum<Join.Mood>
    http://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 Detail

      • imp

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

        public static final Join.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 Join.Mood ind
        A verb in indicative merely states that something happens, has happened or will happen.
    • Method Detail

      • values

        public static Join.Mood[] 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 (Join.Mood c : Join.Mood.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Join.Mood 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 name
        NullPointerException - if the argument is null
      • value

        public String value()