Package com.io7m.jnoisetype.api
Class NTTransformIndex
java.lang.Object
com.io7m.jnoisetype.api.NTTransformIndex
- All Implemented Interfaces:
NTTransformIndexType,Comparable<NTTransformIndexType>
The valid values for transform indices.
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionstatic NTTransformIndex.Builderbuilder()Creates a builder forNTTransformIndex.static NTTransformIndexcopyOf(NTTransformIndexType instance) Creates an immutable copy of aNTTransformIndexTypevalue.booleanThis instance is equal to all instances ofNTTransformIndexthat have equal attribute values.inthashCode()Computes a hash code from attributes:value.static NTTransformIndexof(int value) Construct a new immutableNTTransformIndexinstance.toString()Prints the immutable valueNTTransformIndexwith attribute values.intvalue()final NTTransformIndexwithValue(int value) Copy the current immutable object by setting a value for thevalueattribute.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface com.io7m.jnoisetype.api.NTTransformIndexType
asUnsigned16, checkPreconditions, compareTo
-
Method Details
-
value
public int value()- Specified by:
valuein interfaceNTTransformIndexType- Returns:
- The raw value in the range
[0, 0xffff]
-
withValue
Copy the current immutable object by setting a value for thevalueattribute. A value equality check is used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for value- Returns:
- A modified copy of the
thisobject
-
equals
This instance is equal to all instances ofNTTransformIndexthat have equal attribute values. -
hashCode
public int hashCode()Computes a hash code from attributes:value. -
toString
Prints the immutable valueNTTransformIndexwith attribute values. -
of
Construct a new immutableNTTransformIndexinstance.- Parameters:
value- The value for thevalueattribute- Returns:
- An immutable NTTransformIndex instance
-
copyOf
Creates an immutable copy of aNTTransformIndexTypevalue. Uses accessors to get values to initialize the new immutable instance. If an instance is already immutable, it is returned as is.- Parameters:
instance- The instance to copy- Returns:
- A copied immutable NTTransformIndex instance
-
builder
Creates a builder forNTTransformIndex.NTTransformIndex.builder() .setValue(int) // requiredvalue.build();- Returns:
- A new NTTransformIndex builder
-