Package com.dua3.utility.ui
Record Class IndexRange
java.lang.Object
java.lang.Record
com.dua3.utility.ui.IndexRange
- Record Components:
start- start offset (inclusive)end- end offset (exclusive)
Toolkit-neutral text index range.
-
Constructor Summary
ConstructorsConstructorDescriptionIndexRange(int start, int end) Creates an instance of aIndexRangerecord class. -
Method Summary
Modifier and TypeMethodDescriptionintend()Returns the value of theendrecord component.final booleanIndicates whether some other object is "equal to" this one.intgetEnd()Returns end offset (exclusive).intReturns range length.intgetStart()Returns start offset (inclusive).final inthashCode()Returns a hash code value for this object.intlength()Returns range length.intstart()Returns the value of thestartrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Method Details
-
getStart
public int getStart()Returns start offset (inclusive).- Returns:
- start offset
-
getEnd
public int getEnd()Returns end offset (exclusive).- Returns:
- end offset
-
getLength
public int getLength()Returns range length.- Returns:
- range length
-
length
public int length()Returns range length.- Returns:
- range length
-
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 '=='. -
start
public int start()Returns the value of thestartrecord component.- Returns:
- the value of the
startrecord component
-
end
public int end()Returns the value of theendrecord component.- Returns:
- the value of the
endrecord component
-