Record Class YmlPath.PropertySegment
java.lang.Object
java.lang.Record
cloud.opencode.base.yml.path.YmlPath.PropertySegment
- Record Components:
property- the property name | 属性名称
- All Implemented Interfaces:
YmlPath.Segment
- Enclosing class:
YmlPath
public static record YmlPath.PropertySegment(String property)
extends Record
implements YmlPath.Segment
Property Segment - Represents a property access
属性段 - 表示属性访问
- Since:
- JDK 25, opencode-base-yml V1.0.0
- Author:
- Leon Soo www.LeonSoo.com
-
Constructor Summary
ConstructorsConstructorDescriptionPropertySegment(String property) Creates an instance of aPropertySegmentrecord 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.property()Returns the value of thepropertyrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
PropertySegment
-
-
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). -
property
-