Package ch.rswk.meta.engine
Record Class EngineUpdater.JsonExportTaskResult
java.lang.Object
java.lang.Record
ch.rswk.meta.engine.EngineUpdater.JsonExportTaskResult
- Enclosing class:
EngineUpdater
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final @Nullable Set<MetaUserConfig> The field for theconfigsrecord component.The field for thefilesrecord component.private final @Nullable Set<MetaUserGroup> The field for thegroupsrecord component.The field for themetasrecord component.The field for theusersrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionJsonExportTaskResult(@Nullable Set<MetaUserConfig> configs, @Nullable Set<FileInfo> files, @Nullable Set<MetaUserGroup> groups, @Nullable Set<Meta> metas, @Nullable Set<MetaUser> users) Creates an instance of aJsonExportTaskResultrecord class. -
Method Summary
Modifier and TypeMethodDescription@Nullable Set<MetaUserConfig> configs()Returns the value of theconfigsrecord component.final booleanIndicates whether some other object is "equal to" this one.files()Returns the value of thefilesrecord component.@Nullable Set<MetaUserGroup> groups()Returns the value of thegroupsrecord component.final inthashCode()Returns a hash code value for this object.metas()Returns the value of themetasrecord component.final StringtoString()Returns a string representation of this record class.users()Returns the value of theusersrecord component.
-
Field Details
-
configs
The field for theconfigsrecord component. -
files
The field for thefilesrecord component. -
groups
The field for thegroupsrecord component. -
metas
The field for themetasrecord component. -
users
The field for theusersrecord component.
-
-
Constructor Details
-
JsonExportTaskResult
public JsonExportTaskResult(@Nullable Set<MetaUserConfig> configs, @Nullable Set<FileInfo> files, @Nullable Set<MetaUserGroup> groups, @Nullable Set<Meta> metas, @Nullable Set<MetaUser> users) Creates an instance of aJsonExportTaskResultrecord class.- Parameters:
configs- the value for theconfigsrecord componentfiles- the value for thefilesrecord componentgroups- the value for thegroupsrecord componentmetas- the value for themetasrecord componentusers- the value for theusersrecord 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). -
configs
Returns the value of theconfigsrecord component.- Returns:
- the value of the
configsrecord component
-
files
Returns the value of thefilesrecord component.- Returns:
- the value of the
filesrecord component
-
groups
Returns the value of thegroupsrecord component.- Returns:
- the value of the
groupsrecord component
-
metas
Returns the value of themetasrecord component.- Returns:
- the value of the
metasrecord component
-
users
Returns the value of theusersrecord component.- Returns:
- the value of the
usersrecord component
-