Package com.io7m.jnoisetype.api
Class NTGeneratorIndex
- java.lang.Object
-
- com.io7m.jnoisetype.api.NTGeneratorIndex
-
- All Implemented Interfaces:
NTGeneratorIndexType,java.lang.Comparable<NTGeneratorIndexType>
public final class NTGeneratorIndex extends java.lang.Object implements NTGeneratorIndexType
The valid values for generator indices.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classNTGeneratorIndex.BuilderBuilds instances of typeNTGeneratorIndex.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static NTGeneratorIndex.Builderbuilder()Creates a builder forNTGeneratorIndex.static NTGeneratorIndexcopyOf(NTGeneratorIndexType instance)Creates an immutable copy of aNTGeneratorIndexTypevalue.booleanequals(java.lang.Object another)This instance is equal to all instances ofNTGeneratorIndexthat have equal attribute values.inthashCode()Computes a hash code from attributes:value.static NTGeneratorIndexof(int value)Construct a new immutableNTGeneratorIndexinstance.java.lang.StringtoString()Prints the immutable valueNTGeneratorIndexwith attribute values.intvalue()NTGeneratorIndexwithValue(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.NTGeneratorIndexType
asUnsigned16, checkPreconditions, compareTo
-
-
-
-
Method Detail
-
value
public int value()
- Specified by:
valuein interfaceNTGeneratorIndexType- Returns:
- The raw value in the range
[0, 0xffff]
-
withValue
public final NTGeneratorIndex 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 ofNTGeneratorIndexthat 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 valueNTGeneratorIndexwith attribute values.- Overrides:
toStringin classjava.lang.Object- Returns:
- A string representation of the value
-
of
public static NTGeneratorIndex of(int value)
Construct a new immutableNTGeneratorIndexinstance.- Parameters:
value- The value for thevalueattribute- Returns:
- An immutable NTGeneratorIndex instance
-
copyOf
public static NTGeneratorIndex copyOf(NTGeneratorIndexType instance)
Creates an immutable copy of aNTGeneratorIndexTypevalue. 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 NTGeneratorIndex instance
-
builder
public static NTGeneratorIndex.Builder builder()
Creates a builder forNTGeneratorIndex.NTGeneratorIndex.builder() .setValue(int) // requiredvalue.build();- Returns:
- A new NTGeneratorIndex builder
-
-