Package com.io7m.jnoisetype.api
Class NTVersion
java.lang.Object
com.io7m.jnoisetype.api.NTVersion
- All Implemented Interfaces:
NTVersionType,Comparable<NTVersionType>
A version number.
- See Also:
-
- "SoundFontⓡ Technical Specification 2.04, §5.1, sfVersionTag"
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionstatic NTVersion.Builderbuilder()Creates a builder forNTVersion.static NTVersioncopyOf(NTVersionType instance) Creates an immutable copy of aNTVersionTypevalue.booleanThis instance is equal to all instances ofNTVersionthat have equal attribute values.inthashCode()Computes a hash code from attributes:major,minor.intmajor()intminor()static NTVersionof(int major, int minor) Construct a new immutableNTVersioninstance.toString()Prints the immutable valueNTVersionwith attribute values.final NTVersionwithMajor(int value) Copy the current immutable object by setting a value for themajorattribute.final NTVersionwithMinor(int value) Copy the current immutable object by setting a value for theminorattribute.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface com.io7m.jnoisetype.api.NTVersionType
checkPreconditions, compareTo
-
Method Details
-
major
public int major()- Specified by:
majorin interfaceNTVersionType- Returns:
- The major version number
-
minor
public int minor()- Specified by:
minorin interfaceNTVersionType- Returns:
- The minor version number
-
withMajor
Copy the current immutable object by setting a value for themajorattribute. A value equality check is used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for major- Returns:
- A modified copy of the
thisobject
-
withMinor
Copy the current immutable object by setting a value for theminorattribute. A value equality check is used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for minor- Returns:
- A modified copy of the
thisobject
-
equals
This instance is equal to all instances ofNTVersionthat have equal attribute values. -
hashCode
public int hashCode()Computes a hash code from attributes:major,minor. -
toString
Prints the immutable valueNTVersionwith attribute values. -
of
Construct a new immutableNTVersioninstance.- Parameters:
major- The value for themajorattributeminor- The value for theminorattribute- Returns:
- An immutable NTVersion instance
-
copyOf
Creates an immutable copy of aNTVersionTypevalue. 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 NTVersion instance
-
builder
Creates a builder forNTVersion.NTVersion.builder() .setMajor(int) // requiredmajor.setMinor(int) // requiredminor.build();- Returns:
- A new NTVersion builder
-