Merge "Port OpenJDK8 java.util.*SummaryStatistics & add tests" into nyc-dev
am: 8710347fd9
* commit '8710347fd96bc26c7f7760a261d8e889baf53ba2':
Port OpenJDK8 java.util.*SummaryStatistics & add tests
This commit is contained in:
@@ -57612,6 +57612,17 @@ package java.util {
|
||||
method public abstract int size();
|
||||
}
|
||||
|
||||
public class DoubleSummaryStatistics implements java.util.function.DoubleConsumer {
|
||||
ctor public DoubleSummaryStatistics();
|
||||
method public void accept(double);
|
||||
method public void combine(java.util.DoubleSummaryStatistics);
|
||||
method public final double getAverage();
|
||||
method public final long getCount();
|
||||
method public final double getMax();
|
||||
method public final double getMin();
|
||||
method public final double getSum();
|
||||
}
|
||||
|
||||
public class DuplicateFormatFlagsException extends java.util.IllegalFormatException {
|
||||
ctor public DuplicateFormatFlagsException(java.lang.String);
|
||||
method public java.lang.String getFlags();
|
||||
@@ -57834,6 +57845,17 @@ package java.util {
|
||||
ctor public InputMismatchException(java.lang.String);
|
||||
}
|
||||
|
||||
public class IntSummaryStatistics implements java.util.function.IntConsumer {
|
||||
ctor public IntSummaryStatistics();
|
||||
method public void accept(int);
|
||||
method public void combine(java.util.IntSummaryStatistics);
|
||||
method public final double getAverage();
|
||||
method public final long getCount();
|
||||
method public final int getMax();
|
||||
method public final int getMin();
|
||||
method public final long getSum();
|
||||
}
|
||||
|
||||
public class InvalidPropertiesFormatException extends java.io.IOException {
|
||||
ctor public InvalidPropertiesFormatException(java.lang.Throwable);
|
||||
ctor public InvalidPropertiesFormatException(java.lang.String);
|
||||
@@ -58025,6 +58047,18 @@ package java.util {
|
||||
enum_constant public static final java.util.Locale.Category FORMAT;
|
||||
}
|
||||
|
||||
public class LongSummaryStatistics implements java.util.function.IntConsumer java.util.function.LongConsumer {
|
||||
ctor public LongSummaryStatistics();
|
||||
method public void accept(int);
|
||||
method public void accept(long);
|
||||
method public void combine(java.util.LongSummaryStatistics);
|
||||
method public final double getAverage();
|
||||
method public final long getCount();
|
||||
method public final long getMax();
|
||||
method public final long getMin();
|
||||
method public final long getSum();
|
||||
}
|
||||
|
||||
public abstract interface Map {
|
||||
method public abstract void clear();
|
||||
method public abstract boolean containsKey(java.lang.Object);
|
||||
|
||||
Reference in New Issue
Block a user