org.telegram.tl.TLStringVector 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
The newest version!
package org.telegram.tl;
/**
* TL Vector of strings. @see org.telegram.tl.TLVector
*
* @author Ruben Bermudez
*/
public class TLStringVector extends TLVector {
public TLStringVector() {
setDestClass(String.class);
}
@Override
public String toString() {
return "vector#1cb5c415";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy