Record Class DynamicAssetsLoader.EntrypointAssetData
java.lang.Object
java.lang.Record
eu.rarogsoftware.rarog.platform.api.resources.management.frontend.DynamicAssetsLoader.EntrypointAssetData
- Enclosing interface:
- DynamicAssetsLoader
public static record DynamicAssetsLoader.EntrypointAssetData(List<DynamicAssetsLoader.WebpackAssetData> js, List<DynamicAssetsLoader.WebpackAssetData> css)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionEntrypointAssetData(List<DynamicAssetsLoader.WebpackAssetData> js, List<DynamicAssetsLoader.WebpackAssetData> css) Creates an instance of aEntrypointAssetDatarecord class. -
Method Summary
Modifier and TypeMethodDescriptioncss()Returns the value of thecssrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.js()Returns the value of thejsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
EntrypointAssetData
public EntrypointAssetData(List<DynamicAssetsLoader.WebpackAssetData> js, List<DynamicAssetsLoader.WebpackAssetData> css) Creates an instance of aEntrypointAssetDatarecord class.- Parameters:
js- the value for thejsrecord componentcss- the value for thecssrecord 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). -
js
Returns the value of thejsrecord component.- Returns:
- the value of the
jsrecord component
-
css
Returns the value of thecssrecord component.- Returns:
- the value of the
cssrecord component
-