Record Class ClipboardFileInfo
java.lang.Object
java.lang.Record
com.vaadin.flow.component.clipboard.ClipboardFileInfo
- Record Components:
name- the file name as reported by the browser; nevernullbut may be empty for files without a namemimeType- the MIME type as reported by the browser; nevernullbut may be empty if the browser did not provide onesize- the file size in bytes, or0if the browser did not report a size
- All Implemented Interfaces:
Serializable
public record ClipboardFileInfo(String name, String mimeType, long size)
extends Record
implements Serializable
Metadata about a file attached to a paste event — name, MIME type, and size —
without the file content. Reported by the
ClipboardPasteStartEvent
that fires before uploads begin and by ClipboardPasteFailedEvent that
fires when an upload fails.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionClipboardFileInfo(String name, String mimeType, long size) Creates an instance of aClipboardFileInforecord class. -
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.mimeType()Returns the value of themimeTyperecord component.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
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
mimeType
Returns the value of themimeTyperecord component.- Returns:
- the value of the
mimeTyperecord component
-
size
public long size()Returns the value of thesizerecord component.- Returns:
- the value of the
sizerecord component
-