Enum Join.Prontype

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

    public static enum Join.Prontype
    extends Enum<Join.Prontype>
    https://universaldependencies.org/u/feat/PronType.html This feature typically applies to pronouns, pronominal adjectives (determiners), pronominal numerals (quantifiers) and pronominal adverbs.

    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="prs"/>
         <enumeration value="rcp"/>
         <enumeration value="art"/>
         <enumeration value="int"/>
         <enumeration value="rel"/>
         <enumeration value="ind"/>
         <enumeration value="emp"/>
         <enumeration value="exc"/>
         <enumeration value="dem"/>
       </restriction>
     </simpleType>
     
    • Enum Constant Detail

      • prs

        public static final Join.Prontype prs
        personal pronoun or determiner
      • art

        public static final Join.Prontype art
        Article is a special case of determiner that bears the feature of definiteness
      • _int

        public static final Join.Prontype _int
        interrogative pronoun, determiner, numeral or adverb
      • rel

        public static final Join.Prontype rel
        relative pronoun, determiner, numeral or adverb
      • ind

        public static final Join.Prontype ind
        indefinite pronoun, determiner, numeral or adverb
      • emp

        public static final Join.Prontype emp
        Emphatic pro-adjectives (determiners) emphasize the nominal they depend on.
      • exc

        public static final Join.Prontype exc
        exclamative determiner
      • dem

        public static final Join.Prontype dem
        Demonstrative pronouns are often parallel to interrogatives.
    • Method Detail

      • values

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