Class Value.Builder
- java.lang.Object
-
- org.apache.avro.data.RecordBuilderBase<T>
-
- org.apache.avro.specific.SpecificRecordBuilderBase<Value>
-
- org.apache.camel.quarkus.component.avro.rpc.it.specific.generated.Value.Builder
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Valuebuild()Value.BuilderclearValue()Clears the value of the 'value' field.CharSequencegetValue()Gets the value of the 'value' field.booleanhasValue()Checks whether the 'value' field has been set.Value.BuildersetValue(CharSequence value)Sets the value of the 'value' field.
-
-
-
Method Detail
-
getValue
public CharSequence getValue()
Gets the value of the 'value' field.- Returns:
- The value.
-
setValue
public Value.Builder setValue(CharSequence value)
Sets the value of the 'value' field.- Parameters:
value- The value of 'value'.- Returns:
- This builder.
-
hasValue
public boolean hasValue()
Checks whether the 'value' field has been set.- Returns:
- True if the 'value' field has been set, false otherwise.
-
clearValue
public Value.Builder clearValue()
Clears the value of the 'value' field.- Returns:
- This builder.
-
-