Package com.io7m.smfj.core
Class SMFSchemaIdentifier.Builder
- java.lang.Object
-
- com.io7m.smfj.core.SMFSchemaIdentifier.Builder
-
- Enclosing class:
- SMFSchemaIdentifier
public static final class SMFSchemaIdentifier.Builder extends java.lang.ObjectBuilds instances of typeSMFSchemaIdentifier. Initialize attributes and then invoke thebuild()method to create an immutable instance.Builderis not thread-safe and generally should not be stored in a field or collection, but instead used immediately to create instances.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SMFSchemaIdentifierbuild()Builds a newSMFSchemaIdentifier.SMFSchemaIdentifier.Builderfrom(SMFSchemaIdentifierType instance)Fill a builder with attribute values from the providedSMFSchemaIdentifierTypeinstance.SMFSchemaIdentifier.BuildersetName(SMFSchemaName name)Initializes the value for thenameattribute.SMFSchemaIdentifier.BuildersetVersionMajor(int versionMajor)Initializes the value for theversionMajorattribute.SMFSchemaIdentifier.BuildersetVersionMinor(int versionMinor)Initializes the value for theversionMinorattribute.
-
-
-
Method Detail
-
from
public final SMFSchemaIdentifier.Builder from(SMFSchemaIdentifierType instance)
Fill a builder with attribute values from the providedSMFSchemaIdentifierTypeinstance. Regular attribute values will be replaced with those from the given instance. Absent optional values will not replace present values.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
setName
public final SMFSchemaIdentifier.Builder setName(SMFSchemaName name)
Initializes the value for thenameattribute.- Parameters:
name- The value for name- Returns:
thisbuilder for use in a chained invocation
-
setVersionMajor
public final SMFSchemaIdentifier.Builder setVersionMajor(int versionMajor)
Initializes the value for theversionMajorattribute.If not set, this attribute will have a default value as returned by the initializer of
versionMajor.- Parameters:
versionMajor- The value for versionMajor- Returns:
thisbuilder for use in a chained invocation
-
setVersionMinor
public final SMFSchemaIdentifier.Builder setVersionMinor(int versionMinor)
Initializes the value for theversionMinorattribute.If not set, this attribute will have a default value as returned by the initializer of
versionMinor.- Parameters:
versionMinor- The value for versionMinor- Returns:
thisbuilder for use in a chained invocation
-
build
public SMFSchemaIdentifier build()
Builds a newSMFSchemaIdentifier.- Returns:
- An immutable instance of SMFSchemaIdentifier
- Throws:
java.lang.IllegalStateException- if any required attributes are missing
-
-