Package com.io7m.jnoisetype.api
Class NTSampleIndex
- java.lang.Object
-
- com.io7m.jnoisetype.api.NTSampleIndex
-
- All Implemented Interfaces:
NTSampleIndexType,java.lang.Comparable<NTSampleIndexType>
public final class NTSampleIndex extends java.lang.Object implements NTSampleIndexType
The valid values for sample indices.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classNTSampleIndex.BuilderBuilds instances of typeNTSampleIndex.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static NTSampleIndex.Builderbuilder()Creates a builder forNTSampleIndex.static NTSampleIndexcopyOf(NTSampleIndexType instance)Creates an immutable copy of aNTSampleIndexTypevalue.booleanequals(java.lang.Object another)This instance is equal to all instances ofNTSampleIndexthat have equal attribute values.inthashCode()Computes a hash code from attributes:value.static NTSampleIndexof(int value)Construct a new immutableNTSampleIndexinstance.java.lang.StringtoString()Prints the immutable valueNTSampleIndexwith attribute values.intvalue()NTSampleIndexwithValue(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, wait
-
Methods inherited from interface com.io7m.jnoisetype.api.NTSampleIndexType
asUnsigned16, checkPreconditions, compareTo
-
-
-
-
Method Detail
-
value
public int value()
- Specified by:
valuein interfaceNTSampleIndexType- Returns:
- The raw value in the range
[0, 0xffff]
-
withValue
public final NTSampleIndex withValue(int value)
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 ofNTSampleIndexthat 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 valueNTSampleIndexwith attribute values.- Overrides:
toStringin classjava.lang.Object- Returns:
- A string representation of the value
-
of
public static NTSampleIndex of(int value)
Construct a new immutableNTSampleIndexinstance.- Parameters:
value- The value for thevalueattribute- Returns:
- An immutable NTSampleIndex instance
-
copyOf
public static NTSampleIndex copyOf(NTSampleIndexType instance)
Creates an immutable copy of aNTSampleIndexTypevalue. 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 NTSampleIndex instance
-
builder
public static NTSampleIndex.Builder builder()
Creates a builder forNTSampleIndex.NTSampleIndex.builder() .setValue(int) // requiredvalue.build();- Returns:
- A new NTSampleIndex builder
-
-