Record Class ColumnNameParser.ColumnNameAndFieldPath
java.lang.Object
java.lang.Record
cool.scx.data.jdbc.parser.ColumnNameParser.ColumnNameAndFieldPath
- Enclosing class:
ColumnNameParser
public static record ColumnNameParser.ColumnNameAndFieldPath(String columnName, String fieldPath)
extends Record
- Version:
- 0.0.1
- Author:
- scx567888
-
Constructor Summary
ConstructorsConstructorDescriptionColumnNameAndFieldPath(String columnName, String fieldPath) Creates an instance of aColumnNameAndFieldPathrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecolumnNamerecord component.final booleanIndicates whether some other object is "equal to" this one.Returns the value of thefieldPathrecord component.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ColumnNameAndFieldPath
-
-
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). -
columnName
Returns the value of thecolumnNamerecord component.- Returns:
- the value of the
columnNamerecord component
-
fieldPath
Returns the value of thefieldPathrecord component.- Returns:
- the value of the
fieldPathrecord component
-