Package com.io7m.jnoisetype.api
Class NTPitch
- java.lang.Object
-
- com.io7m.jnoisetype.api.NTPitch
-
- All Implemented Interfaces:
NTPitchType,java.lang.Comparable<NTPitchType>
public final class NTPitch extends java.lang.Object implements NTPitchType
The valid values for pitches.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classNTPitch.BuilderBuilds instances of typeNTPitch.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static NTPitch.Builderbuilder()Creates a builder forNTPitch.static NTPitchcopyOf(NTPitchType instance)Creates an immutable copy of aNTPitchTypevalue.booleanequals(java.lang.Object another)This instance is equal to all instances ofNTPitchthat have equal attribute values.inthashCode()Computes a hash code from attributes:value.static NTPitchof(int value)Construct a new immutableNTPitchinstance.java.lang.StringtoString()Prints the immutable valueNTPitchwith attribute values.intvalue()NTPitchwithValue(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.NTPitchType
checkPreconditions, compareTo
-
-
-
-
Method Detail
-
value
public int value()
- Specified by:
valuein interfaceNTPitchType- Returns:
- The raw value in the range
[0, 127]
-
withValue
public final NTPitch 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 ofNTPitchthat 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 valueNTPitchwith attribute values.- Overrides:
toStringin classjava.lang.Object- Returns:
- A string representation of the value
-
of
public static NTPitch of(int value)
Construct a new immutableNTPitchinstance.- Parameters:
value- The value for thevalueattribute- Returns:
- An immutable NTPitch instance
-
copyOf
public static NTPitch copyOf(NTPitchType instance)
Creates an immutable copy of aNTPitchTypevalue. 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 NTPitch instance
-
builder
public static NTPitch.Builder builder()
- Returns:
- A new NTPitch builder
-
-