Package com.io7m.jnoisetype.api
Class NTModulatorIndex
java.lang.Object
com.io7m.jnoisetype.api.NTModulatorIndex
- All Implemented Interfaces:
NTModulatorIndexType,java.lang.Comparable<NTModulatorIndexType>
public final class NTModulatorIndex extends java.lang.Object implements NTModulatorIndexType
The valid values for modulator indices.
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classNTModulatorIndex.BuilderBuilds instances of typeNTModulatorIndex. -
Method Summary
Modifier and Type Method Description static NTModulatorIndex.Builderbuilder()Creates a builder forNTModulatorIndex.static NTModulatorIndexcopyOf(NTModulatorIndexType instance)Creates an immutable copy of aNTModulatorIndexTypevalue.booleanequals(java.lang.Object another)This instance is equal to all instances ofNTModulatorIndexthat have equal attribute values.inthashCode()Computes a hash code from attributes:value.static NTModulatorIndexof(int value)Construct a new immutableNTModulatorIndexinstance.java.lang.StringtoString()Prints the immutable valueNTModulatorIndexwith attribute values.intvalue()NTModulatorIndexwithValue(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.NTModulatorIndexType
asUnsigned16, checkPreconditions, compareTo
-
Method Details
-
value
public int value()- Specified by:
valuein interfaceNTModulatorIndexType- 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
public boolean equals(java.lang.Object another)This instance is equal to all instances ofNTModulatorIndexthat have equal attribute values.- Overrides:
equalsin classjava.lang.Object- Returns:
trueifthisis equal toanotherinstance
-
hashCode
public int hashCode()Computes a hash code from attributes:value.- Overrides:
hashCodein classjava.lang.Object- Returns:
- hashCode value
-
toString
public java.lang.String toString()Prints the immutable valueNTModulatorIndexwith attribute values.- Overrides:
toStringin classjava.lang.Object- Returns:
- A string representation of the value
-
of
Construct a new immutableNTModulatorIndexinstance.- Parameters:
value- The value for thevalueattribute- Returns:
- An immutable NTModulatorIndex instance
-
copyOf
Creates an immutable copy of aNTModulatorIndexTypevalue. 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 NTModulatorIndex instance
-
builder
Creates a builder forNTModulatorIndex.NTModulatorIndex.builder() .setValue(int) // requiredvalue.build();- Returns:
- A new NTModulatorIndex builder
-