Record Class AbstractResourceBasedDynamicAssetsLoader.ManifestData
java.lang.Object
java.lang.Record
eu.rarogsoftware.rarog.platform.api.resources.management.frontend.AbstractResourceBasedDynamicAssetsLoader.ManifestData
- Enclosing class:
- AbstractResourceBasedDynamicAssetsLoader
protected static record AbstractResourceBasedDynamicAssetsLoader.ManifestData(Map<String,DynamicAssetsLoader.EntrypointAssetData> entryPointsData, Map<String,DynamicAssetsLoader.WebpackAssetData> assets, Long loaded)
extends Record
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedManifestData(Map<String, DynamicAssetsLoader.EntrypointAssetData> entryPointsData, Map<String, DynamicAssetsLoader.WebpackAssetData> assets, Long loaded) Creates an instance of aManifestDatarecord class. -
Method Summary
Modifier and TypeMethodDescriptionassets()Returns the value of theassetsrecord component.Returns the value of theentryPointsDatarecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.loaded()Returns the value of theloadedrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ManifestData
protected ManifestData(Map<String, DynamicAssetsLoader.EntrypointAssetData> entryPointsData, Map<String, DynamicAssetsLoader.WebpackAssetData> assets, Long loaded) Creates an instance of aManifestDatarecord class.- Parameters:
entryPointsData- the value for theentryPointsDatarecord componentassets- the value for theassetsrecord componentloaded- the value for theloadedrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
entryPointsData
Returns the value of theentryPointsDatarecord component.- Returns:
- the value of the
entryPointsDatarecord component
-
assets
Returns the value of theassetsrecord component.- Returns:
- the value of the
assetsrecord component
-
loaded
Returns the value of theloadedrecord component.- Returns:
- the value of the
loadedrecord component
-