Class: Google::Apis::LanguageV1::PartOfSpeech
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV1::PartOfSpeech
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/language_v1/classes.rb,
generated/google/apis/language_v1/representations.rb,
generated/google/apis/language_v1/representations.rb
Overview
Represents part of speech information for a token. Parts of speech are as defined in http://www.lrec-conf.org/proceedings/lrec2012/pdf/274_Paper.pdf
Instance Attribute Summary collapse
-
#aspect ⇒ String
The grammatical aspect.
-
#case ⇒ String
The grammatical case.
-
#form ⇒ String
The grammatical form.
-
#gender ⇒ String
The grammatical gender.
-
#mood ⇒ String
The grammatical mood.
-
#number ⇒ String
The grammatical number.
-
#person ⇒ String
The grammatical person.
-
#proper ⇒ String
The grammatical properness.
-
#reciprocity ⇒ String
The grammatical reciprocity.
-
#tag ⇒ String
The part of speech tag.
-
#tense ⇒ String
The grammatical tense.
-
#voice ⇒ String
The grammatical voice.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PartOfSpeech
constructor
A new instance of PartOfSpeech.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ PartOfSpeech
Returns a new instance of PartOfSpeech
91 92 93 |
# File 'generated/google/apis/language_v1/classes.rb', line 91 def initialize(**args) update!(**args) end |
Instance Attribute Details
#aspect ⇒ String
The grammatical aspect.
Corresponds to the JSON property aspect
49 50 51 |
# File 'generated/google/apis/language_v1/classes.rb', line 49 def aspect @aspect end |
#case ⇒ String
The grammatical case.
Corresponds to the JSON property case
79 80 81 |
# File 'generated/google/apis/language_v1/classes.rb', line 79 def case @case end |
#form ⇒ String
The grammatical form.
Corresponds to the JSON property form
34 35 36 |
# File 'generated/google/apis/language_v1/classes.rb', line 34 def form @form end |
#gender ⇒ String
The grammatical gender.
Corresponds to the JSON property gender
64 65 66 |
# File 'generated/google/apis/language_v1/classes.rb', line 64 def gender @gender end |
#mood ⇒ String
The grammatical mood.
Corresponds to the JSON property mood
54 55 56 |
# File 'generated/google/apis/language_v1/classes.rb', line 54 def mood @mood end |
#number ⇒ String
The grammatical number.
Corresponds to the JSON property number
39 40 41 |
# File 'generated/google/apis/language_v1/classes.rb', line 39 def number @number end |
#person ⇒ String
The grammatical person.
Corresponds to the JSON property person
69 70 71 |
# File 'generated/google/apis/language_v1/classes.rb', line 69 def person @person end |
#proper ⇒ String
The grammatical properness.
Corresponds to the JSON property proper
74 75 76 |
# File 'generated/google/apis/language_v1/classes.rb', line 74 def proper @proper end |
#reciprocity ⇒ String
The grammatical reciprocity.
Corresponds to the JSON property reciprocity
89 90 91 |
# File 'generated/google/apis/language_v1/classes.rb', line 89 def reciprocity @reciprocity end |
#tag ⇒ String
The part of speech tag.
Corresponds to the JSON property tag
59 60 61 |
# File 'generated/google/apis/language_v1/classes.rb', line 59 def tag @tag end |
#tense ⇒ String
The grammatical tense.
Corresponds to the JSON property tense
84 85 86 |
# File 'generated/google/apis/language_v1/classes.rb', line 84 def tense @tense end |
#voice ⇒ String
The grammatical voice.
Corresponds to the JSON property voice
44 45 46 |
# File 'generated/google/apis/language_v1/classes.rb', line 44 def voice @voice end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
# File 'generated/google/apis/language_v1/classes.rb', line 96 def update!(**args) @form = args[:form] if args.key?(:form) @number = args[:number] if args.key?(:number) @voice = args[:voice] if args.key?(:voice) @aspect = args[:aspect] if args.key?(:aspect) @mood = args[:mood] if args.key?(:mood) @tag = args[:tag] if args.key?(:tag) @gender = args[:gender] if args.key?(:gender) @person = args[:person] if args.key?(:person) @proper = args[:proper] if args.key?(:proper) @case = args[:case] if args.key?(:case) @tense = args[:tense] if args.key?(:tense) @reciprocity = args[:reciprocity] if args.key?(:reciprocity) end |