diff --git a/javadoc/com/aliucord/CollectionUtils.html b/javadoc/com/aliucord/CollectionUtils.html index 4cbf2d7b..3211eded 100644 --- a/javadoc/com/aliucord/CollectionUtils.html +++ b/javadoc/com/aliucord/CollectionUtils.html @@ -246,7 +246,7 @@

Method Summary

static <E> boolean - some(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter) + some(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter) Check whether any element of the collection passes the filter @@ -254,7 +254,7 @@

Method Summary

static <E> boolean - every(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter) + every(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter) Check whether all elements of the collection pass the filter @@ -262,7 +262,7 @@

Method Summary

static <E> E - find(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter) + find(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter) Find the first element which passes the filter @@ -270,7 +270,7 @@

Method Summary

static <E> E - findLast(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter) + findLast(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter) Find the last element which passes the filter @@ -278,7 +278,7 @@

Method Summary

static <E> int - findIndex(@NonNull() List<E> list, @NonNull() Function1<E, Boolean> filter) + findIndex(@NonNull() List<E> list, @NonNull() Function1<E, Boolean> filter) Find the index of the first element which passes the filter @@ -286,23 +286,23 @@

Method Summary

static <E> int - findLastIndex(@NonNull() List<E> list, @NonNull() Function1<E, Boolean> filter) + findLastIndex(@NonNull() List<E> list, @NonNull() Function1<E, Boolean> filter) Find the index of the last element which passes the filter - static <E> List<E> + static <E> List<E> - filter(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter) + filter(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter) Returns a new Array containing only the elements which passed the filter - static <E, R> List<R> + static <E, R> List<R> - map(@NonNull() Collection<E> collection, @NonNull() Function1<E, R> transform) + map(@NonNull() Collection<E> collection, @NonNull() Function1<E, R> transform) Returns a new Array containing the results of the transform function for all elements @@ -310,31 +310,31 @@

Method Summary

static <E> boolean - removeIf(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter) + removeIf(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter) Removes all elements from the collection which pass the filter - static <E> Pair<List<E>, List<E>> + static <E> Pair<List<E>, List<E>> - partition(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter) + partition(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter) Partition the collection into two Arrays. - static <E> List<E> + static <E> List<E> - splice(List<E> list, int start) + splice(List<E> list, int start) Removes all elements after the specified start index - static <E> List<E> + static <E> List<E> - splice(List<E> list, int start, int deleteCount, Array<E> items) + splice(List<E> list, int start, int deleteCount, Array<E> items) Removes the specified amount of elements after the specified start index and inserts the specified items @@ -401,7 +401,7 @@

Method Detail

>
  • some

    -
     static <E> boolean some(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter)
    +
     static <E> boolean some(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter)

    Check whether any element of the collection passes the filter

    @@ -416,7 +416,7 @@

    some

    >
  • every

    -
     static <E> boolean every(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter)
    +
     static <E> boolean every(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter)

    Check whether all elements of the collection pass the filter

    @@ -431,7 +431,7 @@

    every

    >
  • find

    -
    @Nullable() static <E> E find(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter)
    +
    @Nullable() static <E> E find(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter)

    Find the first element which passes the filter

    @@ -446,7 +446,7 @@

    find

    >
  • findLast

    -
    @Nullable() static <E> E findLast(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter)
    +
    @Nullable() static <E> E findLast(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter)

    Find the last element which passes the filter

    @@ -461,7 +461,7 @@

    findLast

    >
  • findIndex

    -
     static <E> int findIndex(@NonNull() List<E> list, @NonNull() Function1<E, Boolean> filter)
    +
     static <E> int findIndex(@NonNull() List<E> list, @NonNull() Function1<E, Boolean> filter)

    Find the index of the first element which passes the filter

    @@ -476,7 +476,7 @@

    findIndex

    >
  • findLastIndex

    -
     static <E> int findLastIndex(@NonNull() List<E> list, @NonNull() Function1<E, Boolean> filter)
    +
     static <E> int findLastIndex(@NonNull() List<E> list, @NonNull() Function1<E, Boolean> filter)

    Find the index of the last element which passes the filter

    @@ -491,7 +491,7 @@

    findLastIndex

    >
  • filter

    -
    @NonNull() static <E> List<E> filter(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter)
    +
    @NonNull() static <E> List<E> filter(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter)

    Returns a new Array containing only the elements which passed the filter

    @@ -506,7 +506,7 @@

    filter

    >
  • map

    -
    @NonNull() static <E, R> List<R> map(@NonNull() Collection<E> collection, @NonNull() Function1<E, R> transform)
    +
    @NonNull() static <E, R> List<R> map(@NonNull() Collection<E> collection, @NonNull() Function1<E, R> transform)

    Returns a new Array containing the results of the transform function for all elements

    @@ -521,7 +521,7 @@

    map

    >
  • removeIf

    -
     static <E> boolean removeIf(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter)
    +
     static <E> boolean removeIf(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter)

    Removes all elements from the collection which pass the filter

    @@ -536,7 +536,7 @@

    removeIf

    >
  • partition

    -
     static <E> Pair<List<E>, List<E>> partition(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter)
    +
     static <E> Pair<List<E>, List<E>> partition(@NonNull() Collection<E> collection, @NonNull() Function1<E, Boolean> filter)

    Partition the collection into two Arrays. The first array has all elements which passed the filter, the second one has the rest

    @@ -551,7 +551,7 @@

    partition

    >
  • splice

    -
     static <E> List<E> splice(List<E> list, int start)
    +
     static <E> List<E> splice(List<E> list, int start)

    Removes all elements after the specified start index

    @@ -566,7 +566,7 @@

    splice

    >
  • splice

    -
    @SafeVarargs() static <E> List<E> splice(List<E> list, int start, int deleteCount, Array<E> items)
    +
    @SafeVarargs() static <E> List<E> splice(List<E> list, int start, int deleteCount, Array<E> items)

    Removes the specified amount of elements after the specified start index and inserts the specified items

    diff --git a/javadoc/com/aliucord/Constants.Icons.html b/javadoc/com/aliucord/Constants.Icons.html index 45237ba3..40d55bb1 100644 --- a/javadoc/com/aliucord/Constants.Icons.html +++ b/javadoc/com/aliucord/Constants.Icons.html @@ -165,7 +165,7 @@

    Field Summary

    - public final static String + public final static String CLYDE diff --git a/javadoc/com/aliucord/Constants.html b/javadoc/com/aliucord/Constants.html index f1ace78a..a7679606 100644 --- a/javadoc/com/aliucord/Constants.html +++ b/javadoc/com/aliucord/Constants.html @@ -179,13 +179,13 @@

    Field Summary

    - public final static String + public final static String ALIUCORD_GITHUB_REPO - public final static String + public final static String ALIUCORD_SUPPORT @@ -239,43 +239,43 @@

    Field Summary

    - public final static String + public final static String BASE_PATH - public final static String + public final static String PLUGINS_PATH - public final static String + public final static String CRASHLOGS_PATH - public final static String + public final static String SETTINGS_PATH - public final static String + public final static String NAMESPACE_ANDROID - public final static String + public final static String NAMESPACE_APP - public final static String + public final static String RELEASE_SUFFIX diff --git a/javadoc/com/aliucord/Http.HttpException.html b/javadoc/com/aliucord/Http.HttpException.html index ca9b9e04..a227e6c1 100644 --- a/javadoc/com/aliucord/Http.HttpException.html +++ b/javadoc/com/aliucord/Http.HttpException.html @@ -118,7 +118,7 @@

    Class Http.HttpException

     
     public class Http.HttpException
    -extends IOException
    +extends IOException
                         
  • @@ -168,13 +168,13 @@

    Field Summary

    - public final URL + public final URL url - public final String + public final String method @@ -186,7 +186,7 @@

    Field Summary

    - public final String + public final String statusMessage @@ -204,7 +204,7 @@

    Field Summary

    - public String + public String message @@ -289,7 +289,7 @@

    Method Summary

    - String + String getMessage() @@ -364,7 +364,7 @@

    Method Detail

    >
  • getMessage

    -
    @NonNull() String getMessage()
    +
    @NonNull() String getMessage()
    diff --git a/javadoc/com/aliucord/Http.MultiPartBuilder.html b/javadoc/com/aliucord/Http.MultiPartBuilder.html index ae9d4fcc..aa915bbf 100644 --- a/javadoc/com/aliucord/Http.MultiPartBuilder.html +++ b/javadoc/com/aliucord/Http.MultiPartBuilder.html @@ -123,7 +123,7 @@

    Class Http.MultiPartBuilde
     
     public class Http.MultiPartBuilder
    - implements Closeable
    + implements Closeable
                         

    Utility to build MultiPart requests

  • @@ -198,13 +198,13 @@

    Constructor Summary

    Http.MultiPartBuilder(String boundary) + href="#Http.MultiPartBuilder(java.lang.String)">Http.MultiPartBuilder(String boundary) Http.MultiPartBuilder(String boundary, OutputStream os) + href="#Http.MultiPartBuilder(java.lang.String,java.io.OutputStream)">Http.MultiPartBuilder(String boundary, OutputStream os) Construct a new MultiPartBuilder writing to the provided OutputStream @@ -260,7 +260,7 @@

    Method Summary

    Http.MultiPartBuilder - appendFile(@NonNull() String fieldName, @NonNull() File uploadFile) + appendFile(@NonNull() String fieldName, @NonNull() File uploadFile) Append file. @@ -268,7 +268,7 @@

    Method Summary

    Http.MultiPartBuilder - appendStream(@NonNull() String fieldName, @NonNull() InputStream is) + appendStream(@NonNull() String fieldName, @NonNull() InputStream is) Append InputStream. @@ -276,7 +276,7 @@

    Method Summary

    Http.MultiPartBuilder - appendField(@NonNull() String fieldName, @NonNull() String value) + appendField(@NonNull() String fieldName, @NonNull() String value) Append field. @@ -340,7 +340,7 @@

    Constructor Detail