java.lang.Object
it.tdlight.jni.TdApi.Object
it.tdlight.jni.TdApi.File
- Enclosing class:
- TdApi
Represents a file.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
Identifier uniquely determining type of the object.long
Approximate file size in bytes in case the exact file size is unknown.int
Unique file identifier.Information about the local copy of the file.Information about the remote copy of the file.long
File size, in bytes; 0 if unknown. -
Constructor Summary
ConstructorDescriptionFile()
Represents a file.File
(int id, long size, long expectedSize, TdApi.LocalFile local, TdApi.RemoteFile remote) Represents a file.Represents a file. -
Method Summary
Modifier and TypeMethodDescriptionboolean
int
Returns an identifier uniquely determining type of the object.int
hashCode()
void
serialize
(DataOutput output) Serialize the TDLib classMethods inherited from class it.tdlight.jni.TdApi.Object
serialize, toString
-
Field Details
-
id
public int idUnique file identifier. -
size
public long sizeFile size, in bytes; 0 if unknown. -
expectedSize
public long expectedSizeApproximate file size in bytes in case the exact file size is unknown. Can be used to show download/upload progress. -
local
Information about the local copy of the file. -
remote
Information about the remote copy of the file. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
File
public File()Represents a file. -
File
Represents a file.- Parameters:
id
- Unique file identifier.size
- File size, in bytes; 0 if unknown.expectedSize
- Approximate file size in bytes in case the exact file size is unknown. Can be used to show download/upload progress.local
- Information about the local copy of the file.remote
- Information about the remote copy of the file.
-
File
Represents a file.- Parameters:
input
- Serialized input- Throws:
IOException
- the deserialization failed
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.Object
Returns an identifier uniquely determining type of the object.- Specified by:
getConstructor
in classTdApi.Object
- Returns:
- this.CONSTRUCTOR
-
serialize
Serialize the TDLib class- Specified by:
serialize
in classTdApi.Object
- Parameters:
output
- output data stream- Throws:
IOException
- the serialization failed
-
equals
-
hashCode
public int hashCode()
-