Record Class YmlPath.IndexSegment
java.lang.Object
java.lang.Record
cloud.opencode.base.yml.path.YmlPath.IndexSegment
- Record Components:
index- the array index | 数组索引
- All Implemented Interfaces:
YmlPath.Segment
- Enclosing class:
YmlPath
Index Segment - Represents an array index access
索引段 - 表示数组索引访问
- Since:
- JDK 25, opencode-base-yml V1.0.0
- Author:
- Leon Soo www.LeonSoo.com
-
Constructor Summary
Constructors -
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.intindex()Returns the value of theindexrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
IndexSegment
public IndexSegment(int index) Creates an instance of aIndexSegmentrecord class.- Parameters:
index- the value for theindexrecord 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 with thecomparemethod from their corresponding wrapper classes. -
index
-