Package com.io7m.jspiel.api
Class RiffChunkID
java.lang.Object
com.io7m.jspiel.api.RiffChunkID
- All Implemented Interfaces:
RiffChunkIDType
A FourCC chunk ID.
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionstatic RiffChunkID.Builderbuilder()Creates a builder forRiffChunkID.static RiffChunkIDcopyOf(RiffChunkIDType instance) Creates an immutable copy of aRiffChunkIDTypevalue.booleanThis instance is equal to all instances ofRiffChunkIDthat have equal attribute values.inthashCode()Computes a hash code from attributes:value.static RiffChunkIDConstruct a new immutableRiffChunkIDinstance.toString()Prints the immutable valueRiffChunkIDwith attribute values.value()final RiffChunkIDCopy 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.jspiel.api.RiffChunkIDType
checkPreconditions
-
Method Details
-
value
- Specified by:
valuein interfaceRiffChunkIDType- Returns:
- The chunk ID string
-
withValue
Copy the current immutable object by setting a value for thevalueattribute. An equals check 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 ofRiffChunkIDthat have equal attribute values. -
hashCode
public int hashCode()Computes a hash code from attributes:value. -
toString
Prints the immutable valueRiffChunkIDwith attribute values. -
of
Construct a new immutableRiffChunkIDinstance.- Parameters:
value- The value for thevalueattribute- Returns:
- An immutable RiffChunkID instance
-
copyOf
Creates an immutable copy of aRiffChunkIDTypevalue. 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 RiffChunkID instance
-
builder
Creates a builder forRiffChunkID.RiffChunkID.builder() .setValue(String) // requiredvalue.build();- Returns:
- A new RiffChunkID builder
-