Package com.io7m.smfj.probe.api
Class SMFVersionProbed
- java.lang.Object
-
- com.io7m.smfj.probe.api.SMFVersionProbed
-
- All Implemented Interfaces:
SMFVersionProbedType
public final class SMFVersionProbed extends java.lang.Object implements SMFVersionProbedType
A probed version.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSMFVersionProbed.BuilderBuilds instances of typeSMFVersionProbed.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SMFVersionProbed.Builderbuilder()Creates a builder forSMFVersionProbed.static SMFVersionProbedcopyOf(SMFVersionProbedType instance)Creates an immutable copy of aSMFVersionProbedTypevalue.booleanequals(java.lang.Object another)This instance is equal to all instances ofSMFVersionProbedthat have equal attribute values.inthashCode()Computes a hash code from attributes:provider,version.static SMFVersionProbedof(SMFParserProviderType provider, SMFFormatVersion version)Construct a new immutableSMFVersionProbedinstance.SMFParserProviderTypeprovider()java.lang.StringtoString()Prints the immutable valueSMFVersionProbedwith attribute values.SMFFormatVersionversion()SMFVersionProbedwithProvider(SMFParserProviderType value)Copy the current immutable object by setting a value for theproviderattribute.SMFVersionProbedwithVersion(SMFFormatVersion value)Copy the current immutable object by setting a value for theversionattribute.
-
-
-
Method Detail
-
provider
public SMFParserProviderType provider()
- Specified by:
providerin interfaceSMFVersionProbedType- Returns:
- The provider that successfully probed the file
-
version
public SMFFormatVersion version()
- Specified by:
versionin interfaceSMFVersionProbedType- Returns:
- The format version
-
withProvider
public final SMFVersionProbed withProvider(SMFParserProviderType value)
Copy the current immutable object by setting a value for theproviderattribute. A shallow reference equality check is used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for provider- Returns:
- A modified copy of the
thisobject
-
withVersion
public final SMFVersionProbed withVersion(SMFFormatVersion value)
Copy the current immutable object by setting a value for theversionattribute. A shallow reference equality check is used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for version- Returns:
- A modified copy of the
thisobject
-
equals
public boolean equals(java.lang.Object another)
This instance is equal to all instances ofSMFVersionProbedthat have equal attribute values.- Overrides:
equalsin classjava.lang.Object- Returns:
trueifthisis equal toanotherinstance
-
hashCode
public int hashCode()
Computes a hash code from attributes:provider,version.- Overrides:
hashCodein classjava.lang.Object- Returns:
- hashCode value
-
toString
public java.lang.String toString()
Prints the immutable valueSMFVersionProbedwith attribute values.- Overrides:
toStringin classjava.lang.Object- Returns:
- A string representation of the value
-
of
public static SMFVersionProbed of(SMFParserProviderType provider, SMFFormatVersion version)
Construct a new immutableSMFVersionProbedinstance.- Parameters:
provider- The value for theproviderattributeversion- The value for theversionattribute- Returns:
- An immutable SMFVersionProbed instance
-
copyOf
public static SMFVersionProbed copyOf(SMFVersionProbedType instance)
Creates an immutable copy of aSMFVersionProbedTypevalue. 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 SMFVersionProbed instance
-
builder
public static SMFVersionProbed.Builder builder()
Creates a builder forSMFVersionProbed.SMFVersionProbed.builder() .setProvider(com.io7m.smfj.parser.api.SMFParserProviderType) // requiredprovider.setVersion(com.io7m.smfj.core.SMFFormatVersion) // requiredversion.build();- Returns:
- A new SMFVersionProbed builder
-
-