Record Class PulsarProperties.Defaults.TypeMapping
java.lang.Object
java.lang.Record
org.springframework.boot.pulsar.autoconfigure.PulsarProperties.Defaults.TypeMapping
- Record Components:
messageType- the message typetopicName- the topic nameschemaInfo- the schema info
- Enclosing class:
PulsarProperties.Defaults
public static record PulsarProperties.Defaults.TypeMapping(Class<?> messageType, @Nullable String topicName, @Nullable PulsarProperties.Defaults.SchemaInfo schemaInfo)
extends Record
A mapping from message type to topic and/or schema info to use (at least one of
topicName or schemaInfo must be specified.- Since:
- 4.0.0
-
Constructor Summary
ConstructorsConstructorDescriptionTypeMapping(Class<?> messageType, @Nullable String topicName, @Nullable PulsarProperties.Defaults.SchemaInfo schemaInfo) Creates an instance of aTypeMappingrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Class<?> Returns the value of themessageTyperecord component.@Nullable PulsarProperties.Defaults.SchemaInfoReturns the value of theschemaInforecord component.@Nullable StringReturns the value of thetopicNamerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
TypeMapping
public TypeMapping(Class<?> messageType, @Nullable String topicName, @Nullable PulsarProperties.Defaults.SchemaInfo schemaInfo) Creates an instance of aTypeMappingrecord class.- Parameters:
messageType- the value for themessageTyperecord componenttopicName- the value for thetopicNamerecord componentschemaInfo- the value for theschemaInforecord component
-
-
Method Details
-
toString
-
hashCode
-
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). -
messageType
Returns the value of themessageTyperecord component.- Returns:
- the value of the
messageTyperecord component
-
topicName
-
schemaInfo
Returns the value of theschemaInforecord component.- Returns:
- the value of the
schemaInforecord component
-