Record Class FileStorage.FileMetadata
java.lang.Object
java.lang.Record
io.leandev.appfuse.file.FileStorage.FileMetadata
- Record Components:
name- 原始檔名contentType- MIME 類型size- 檔案大小(bytes)
- Enclosing interface:
FileStorage
-
Constructor Summary
ConstructorsConstructorDescriptionFileMetadata(String name, String contentType, long size) Creates an instance of aFileMetadatarecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecontentTyperecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.name()Returns the value of thenamerecord component.longsize()Returns the value of thesizerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
FileMetadata
Creates an instance of aFileMetadatarecord class.- Parameters:
name- the value for thenamerecord componentcontentType- the value for thecontentTyperecord componentsize- the value for thesizerecord component
-
-
Method Details
-
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. -
name
-
contentType
Returns the value of thecontentTyperecord component.- Returns:
- the value of the
contentTyperecord component
-
size
-