Package io.debezium.operator.docs.model
Record Class Documentation.FieldDescription
java.lang.Object
java.lang.Record
io.debezium.operator.docs.model.Documentation.FieldDescription
- Enclosing class:
- Documentation
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final StringThe field for thedefaultValuerecord component.private final StringThe field for thedescriptionrecord component.private final StringThe field for theexternalTypeRefrecord component.private final StringThe field for thenamerecord component.private final StringThe field for thetyperecord component.private final StringThe field for thetypeRefrecord component. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedefaultValuerecord component.Returns the value of thedescriptionrecord component.final booleanIndicates whether some other object is "equal to" this one.Returns the value of theexternalTypeRefrecord component.final inthashCode()Returns a hash code value for this object.name()Returns the value of thenamerecord component.final StringtoString()Returns a string representation of this record class.type()Returns the value of thetyperecord component.typeRef()Returns the value of thetypeRefrecord component.
-
Field Details
-
name
The field for thenamerecord component. -
type
The field for thetyperecord component. -
typeRef
The field for thetypeRefrecord component. -
externalTypeRef
The field for theexternalTypeRefrecord component. -
defaultValue
The field for thedefaultValuerecord component. -
description
The field for thedescriptionrecord component.
-
-
Constructor Details
-
FieldDescription
public FieldDescription(String name, String type, String typeRef, String externalTypeRef, String defaultValue, String description) Creates an instance of aFieldDescriptionrecord class.- Parameters:
name- the value for thenamerecord componenttype- the value for thetyperecord componenttypeRef- the value for thetypeRefrecord componentexternalTypeRef- the value for theexternalTypeRefrecord componentdefaultValue- the value for thedefaultValuerecord componentdescription- the value for thedescriptionrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
type
Returns the value of thetyperecord component.- Returns:
- the value of the
typerecord component
-
typeRef
Returns the value of thetypeRefrecord component.- Returns:
- the value of the
typeRefrecord component
-
externalTypeRef
Returns the value of theexternalTypeRefrecord component.- Returns:
- the value of the
externalTypeRefrecord component
-
defaultValue
Returns the value of thedefaultValuerecord component.- Returns:
- the value of the
defaultValuerecord component
-
description
Returns the value of thedescriptionrecord component.- Returns:
- the value of the
descriptionrecord component
-