Package com.io7m.jnoisetype.api
Class NTGenericAmount
java.lang.Object
com.io7m.jnoisetype.api.NTGenericAmount
- All Implemented Interfaces:
NTGenericAmountType,Comparable<NTGenericAmountType>
- See Also:
-
- "SoundFontⓡ Technical Specification 2.04, §7.5 The PGEN subchunk"
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionstatic NTGenericAmount.Builderbuilder()Creates a builder forNTGenericAmount.static NTGenericAmountcopyOf(NTGenericAmountType instance) Creates an immutable copy of aNTGenericAmountTypevalue.booleanThis instance is equal to all instances ofNTGenericAmountthat have equal attribute values.inthashCode()Computes a hash code from attributes:value.static NTGenericAmountof(int value) Construct a new immutableNTGenericAmountinstance.toString()Prints the immutable valueNTGenericAmountwith attribute values.intvalue()final NTGenericAmountwithValue(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.NTGenericAmountType
asSigned16, asUnsigned16, asUnsignedBytesHigh, asUnsignedBytesLow, checkPreconditions, compareTo
-
Method Details
-
value
public int value()- Specified by:
valuein interfaceNTGenericAmountType- 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 ofNTGenericAmountthat have equal attribute values. -
hashCode
public int hashCode()Computes a hash code from attributes:value. -
toString
Prints the immutable valueNTGenericAmountwith attribute values. -
of
Construct a new immutableNTGenericAmountinstance.- Parameters:
value- The value for thevalueattribute- Returns:
- An immutable NTGenericAmount instance
-
copyOf
Creates an immutable copy of aNTGenericAmountTypevalue. 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 NTGenericAmount instance
-
builder
Creates a builder forNTGenericAmount.NTGenericAmount.builder() .setValue(int) // requiredvalue.build();- Returns:
- A new NTGenericAmount builder
-