Exemple #1
0
 public String toAttachmentsString() {
   ArrayList<CharSequence> attachments = new ArrayList<CharSequence>();
   for (VKApiAttachment attach : this) {
     attachments.add(attach.toAttachmentString());
   }
   return VKStringJoiner.join(attachments, ",");
 }