org.telegram.tl.TLLongVector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegramapi Show documentation
Show all versions of telegramapi Show documentation
Java library to create Telegram Clients
package org.telegram.tl;
/**
* TL Vector of longs. @see org.telegram.tl.TLVector
*
* @author Ruben Bermudez
*/
public class TLLongVector extends TLVector {
public TLLongVector() {
setDestClass(Long.class);
}
@Override
public String toString() {
return "vector#1cb5c415";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy