Record Class TokeniserTooFewTokensResult
java.lang.Object
java.lang.Record
kboyle.oktane.core.results.tokeniser.TokeniserTooFewTokensResult
- All Implemented Interfaces:
FailedResult
,Result
,TokeniserResult
public record TokeniserTooFewTokensResult(String input, int parameterCount)
extends Record
implements TokeniserResult, FailedResult
-
Constructor Summary
ConstructorsConstructorDescriptionTokeniserTooFewTokensResult(String input, int parameterCount)
Creates an instance of aTokeniserTooFewTokensResult
record class. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Indicates whether some other object is "equal to" this one.int
hashCode()
Returns a hash code value for this object.input()
Returns the value of theinput
record component.int
Returns the value of theparameterCount
record component.reason()
tokens()
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface kboyle.oktane.core.results.FailedResult
success
Methods inherited from interface kboyle.oktane.core.results.tokeniser.TokeniserResult
mono
-
Constructor Details
-
TokeniserTooFewTokensResult
Creates an instance of aTokeniserTooFewTokensResult
record class.- Parameters:
input
- the value for theinput
record componentparameterCount
- the value for theparameterCount
record component
-
-
Method Details
-
tokens
- Specified by:
tokens
in interfaceTokeniserResult
-
reason
- Specified by:
reason
in interfaceFailedResult
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
input
Returns the value of theinput
record component.- Returns:
- the value of the
input
record component
-
parameterCount
public int parameterCount()Returns the value of theparameterCount
record component.- Returns:
- the value of the
parameterCount
record component
-