Enum Join.Tense

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

    public static enum Join.Tense
    extends Enum<Join.Tense>
    http://universaldependencies.org/u/feat/Tense.html Tense is typically a feature of verbs.

    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="past"/>
         <enumeration value="pres"/>
         <enumeration value="fut"/>
       </restriction>
     </simpleType>
     
    • Enum Constant Detail

      • past

        public static final Join.Tense past
        past tense
      • pres

        public static final Join.Tense pres
        present tense
      • fut

        public static final Join.Tense fut
        future tense
    • Method Detail

      • values

        public static Join.Tense[] 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.Tense c : Join.Tense.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.Tense 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()