Enum Join.Pos

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

    public static enum Join.Pos
    extends Enum<Join.Pos>
    https://universaldependencies.org/u/pos/index.html These tags mark the core part-of-speech categories.

    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="adj"/>
         <enumeration value="adp"/>
         <enumeration value="adv"/>
         <enumeration value="aux"/>
         <enumeration value="cconj"/>
         <enumeration value="det"/>
         <enumeration value="intj"/>
         <enumeration value="noun"/>
         <enumeration value="num"/>
         <enumeration value="part"/>
         <enumeration value="pron"/>
         <enumeration value="propn"/>
         <enumeration value="punct"/>
         <enumeration value="sconj"/>
         <enumeration value="sym"/>
         <enumeration value="verb"/>
         <enumeration value="x"/>
       </restriction>
     </simpleType>
     
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      adj
      Adjectives are words that typically modify nouns and specify their properties or attributes.
      adp
      Adposition is a cover term for prepositions and postpositions.
      adv
      Adverbs are words that typically modify verbs for such categories as time, place, direction or manner.
      aux
      An auxiliary is a function word that accompanies the lexical verb of a verb phrase and expresses grammatical distinctions not carried by the lexical verb, such as person, number, tense, mood, aspect, voice or evidentiality.
      cconj
      A coordinating conjunction is a word that links words or larger constituents without syntactically subordinating one to the other and expresses a semantic relationship between them.
      det
      Determiners are words that modify nouns or noun phrases and express the reference of the noun phrase in context.
      intj
      An interjection is a word that is used most often as an exclamation or part of an exclamation.
      noun
      Nouns are a part of speech typically denoting a person, place, thing, animal or idea.
      num
      A numeral is a word, functioning most typically as a determiner, adjective or pronoun, that expresses a number and a relation to the number, such as quantity, sequence, frequency or fraction.
      part
      Particles are function words that must be associated with another word or phrase to impart meaning and that do not satisfy definitions of other universal parts of speech.
      pron
      Pronouns are words that substitute for nouns or noun phrases, whose meaning is recoverable from the linguistic or extralinguistic context.
      propn
      A proper noun is a noun (or nominal content word) that is the name (or part of the name) of a specific individual, place, or object.
      punct
      Punctuation marks are non-alphabetical characters and character groups used in many languages to delimit linguistic units in printed text.
      sconj
      A subordinating conjunction is a conjunction that links constructions by making one of them a constituent of the other.
      sym
      A symbol is a word-like entity that differs from ordinary words by form, function, or both.
      verb
      A verb is a member of the syntactic class of words that typically signal events and actions.
      x
      The tag X is used for words that for some reason cannot be assigned a real part-of-speech category.
    • Enum Constant Detail

      • adj

        public static final Join.Pos adj
        Adjectives are words that typically modify nouns and specify their properties or attributes.
      • adp

        public static final Join.Pos adp
        Adposition is a cover term for prepositions and postpositions.
      • adv

        public static final Join.Pos adv
        Adverbs are words that typically modify verbs for such categories as time, place, direction or manner.
      • aux

        public static final Join.Pos aux
        An auxiliary is a function word that accompanies the lexical verb of a verb phrase and expresses grammatical distinctions not carried by the lexical verb, such as person, number, tense, mood, aspect, voice or evidentiality.
      • cconj

        public static final Join.Pos cconj
        A coordinating conjunction is a word that links words or larger constituents without syntactically subordinating one to the other and expresses a semantic relationship between them.
      • det

        public static final Join.Pos det
        Determiners are words that modify nouns or noun phrases and express the reference of the noun phrase in context.
      • intj

        public static final Join.Pos intj
        An interjection is a word that is used most often as an exclamation or part of an exclamation.
      • noun

        public static final Join.Pos noun
        Nouns are a part of speech typically denoting a person, place, thing, animal or idea.
      • num

        public static final Join.Pos num
        A numeral is a word, functioning most typically as a determiner, adjective or pronoun, that expresses a number and a relation to the number, such as quantity, sequence, frequency or fraction.
      • part

        public static final Join.Pos part
        Particles are function words that must be associated with another word or phrase to impart meaning and that do not satisfy definitions of other universal parts of speech.
      • pron

        public static final Join.Pos pron
        Pronouns are words that substitute for nouns or noun phrases, whose meaning is recoverable from the linguistic or extralinguistic context.
      • propn

        public static final Join.Pos propn
        A proper noun is a noun (or nominal content word) that is the name (or part of the name) of a specific individual, place, or object.
      • punct

        public static final Join.Pos punct
        Punctuation marks are non-alphabetical characters and character groups used in many languages to delimit linguistic units in printed text.
      • sconj

        public static final Join.Pos sconj
        A subordinating conjunction is a conjunction that links constructions by making one of them a constituent of the other.
      • sym

        public static final Join.Pos sym
        A symbol is a word-like entity that differs from ordinary words by form, function, or both.
      • verb

        public static final Join.Pos verb
        A verb is a member of the syntactic class of words that typically signal events and actions.
      • x

        public static final Join.Pos x
        The tag X is used for words that for some reason cannot be assigned a real part-of-speech category.
    • Method Detail

      • values

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