Record Class FileEntry
java.lang.Object
java.lang.Record
net.bluemind.node.shared.FileEntry
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.longmodified()Returns the value of themodifiedrecord component.name()path()Returns the value of thepathrecord component.longsize()Returns the value of thesizerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
FileEntry
Creates an instance of aFileEntryrecord class.- Parameters:
path- the value for thepathrecord componentsize- the value for thesizerecord componentmodified- the value for themodifiedrecord component
-
-
Method Details
-
name
-
toString
-
hashCode
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
path
Returns the value of thepathrecord component.- Returns:
- the value of the
pathrecord component
-
size
public long size()Returns the value of thesizerecord component.- Returns:
- the value of the
sizerecord component
-
modified
public long modified()Returns the value of themodifiedrecord component.- Returns:
- the value of the
modifiedrecord component
-