com.vaadin.copilot.
Record Class JavaParserHandler.PropertyData
Record Components:
name
- the name of the property
humanFriendlyName
- a human friendly name of the property - can be used in the UI
type
- the type of the property
itemType
- the type of items the property can contain
annotations
- the annotations set on the property
Enclosing class:
Holds data for a Java bean property.
-
Constructor Summary
ConstructorsConstructorDescriptionPropertyData
(String name, String humanFriendlyName, String type, String itemType, List<JavaParserHandler.AnnotationData> annotations) Creates an instance of a
PropertyData
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of the
annotations
record component.final boolean
Indicates whether some other object is "equal to" this one.
final int
hashCode()
Returns a hash code value for this object.
Returns the value of the
humanFriendlyName
record component.itemType()
Returns the value of the
itemType
record component.name()
Returns the value of the
name
record component.final String
toString()
Returns a string representation of this record class.
type()
Returns the value of the
type
record component.
-
Constructor Details
-
PropertyData
public PropertyData(String name, String humanFriendlyName, String type, String itemType, List<JavaParserHandler.AnnotationData> annotations) Creates an instance of a
PropertyData
record class.Parameters:
name
- the value for thename
record componenthumanFriendlyName
- the value for thehumanFriendlyName
record componenttype
- the value for thetype
record componentitemType
- the value for theitemType
record componentannotations
- the value for theannotations
record 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 with
Objects::equals(Object,Object)
. -
name
Returns the value of the
name
record component.Returns:
the value of the
name
record component -
humanFriendlyName
Returns the value of the
humanFriendlyName
record component.Returns:
the value of the
humanFriendlyName
record component -
type
Returns the value of the
type
record component.Returns:
the value of the
type
record component -
itemType
Returns the value of the
itemType
record component.Returns:
the value of the
itemType
record component -
annotations
Returns the value of the
annotations
record component.Returns:
the value of the
annotations
record component
-