elemental2.core.JsNumber Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2018 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package elemental2.core;
import jsinterop.annotations.JsMethod;
import jsinterop.annotations.JsOverlay;
import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsType;
import jsinterop.base.Js;
@JsType(isNative = true, name = "Number", namespace = JsPackage.GLOBAL)
public class JsNumber {
@JsType(isNative = true, name = "?", namespace = JsPackage.GLOBAL)
public interface ToLocaleStringLocalesUnionType {
@JsOverlay
static JsNumber.ToLocaleStringLocalesUnionType of(Object o) {
return Js.cast(o);
}
@JsOverlay
default JsArray asJsArray() {
return Js.cast(this);
}
@JsOverlay
default String asString() {
return Js.asString(this);
}
@JsOverlay
default boolean isJsArray() {
return (Object) this instanceof JsArray;
}
@JsOverlay
default boolean isString() {
return (Object) this instanceof String;
}
}
@JsType(isNative = true, name = "?", namespace = JsPackage.GLOBAL)
public interface ToStringRadixUnionType {
@JsOverlay
static JsNumber.ToStringRadixUnionType of(Object o) {
return Js.cast(o);
}
@JsOverlay
default int asInt() {
return Js.asInt(this);
}
@JsOverlay
default JsNumber asJsNumber() {
return Js.cast(this);
}
@JsOverlay
default boolean isInt() {
return (Object) this instanceof Double;
}
@JsOverlay
default boolean isJsNumber() {
return (Object) this instanceof JsNumber;
}
}
@JsOverlay public static final double EPSILON = JsNumber__Constants.EPSILON;
@JsOverlay public static final double MAX_SAFE_INTEGER = JsNumber__Constants.MAX_SAFE_INTEGER;
@JsOverlay public static final double MAX_VALUE = JsNumber__Constants.MAX_VALUE;
@JsOverlay public static final double MIN_SAFE_INTEGER = JsNumber__Constants.MIN_SAFE_INTEGER;
@JsOverlay public static final double MIN_VALUE = JsNumber__Constants.MIN_VALUE;
@JsOverlay public static final double NEGATIVE_INFINITY = JsNumber__Constants.NEGATIVE_INFINITY;
@JsOverlay public static final double NaN = JsNumber__Constants.NaN;
@JsOverlay public static final double POSITIVE_INFINITY = JsNumber__Constants.POSITIVE_INFINITY;
public static native boolean isFinite(double value);
public static native boolean isInteger(double value);
public static native boolean isNaN(double value);
public static native boolean isSafeInteger(double value);
public static native double parseFloat(String string);
public static native int parseInt(String string, int radix);
public JsNumber() {}
public JsNumber(Object value) {}
public native String toExponential();
public native String toExponential(double fractionDigits);
public native String toFixed();
public native String toFixed(Object digits);
public native String toLocaleString();
@JsOverlay
public final String toLocaleString(JsArray locales, JsObject options) {
return toLocaleString(
Js.uncheckedCast(locales), options);
}
@JsOverlay
public final String toLocaleString(JsArray locales, Object options) {
return toLocaleString(locales, Js.uncheckedCast(options));
}
@JsOverlay
public final String toLocaleString(JsArray locales) {
return toLocaleString(Js.uncheckedCast(locales));
}
@JsOverlay
public final String toLocaleString(String locales, JsObject options) {
return toLocaleString(
Js.uncheckedCast(locales), options);
}
@JsOverlay
public final String toLocaleString(String[] locales, JsObject options) {
return toLocaleString(Js.>uncheckedCast(locales), options);
}
@JsOverlay
public final String toLocaleString(String locales, Object options) {
return toLocaleString(locales, Js.uncheckedCast(options));
}
@JsOverlay
public final String toLocaleString(String[] locales, Object options) {
return toLocaleString(locales, Js.uncheckedCast(options));
}
@JsOverlay
public final String toLocaleString(String locales) {
return toLocaleString(Js.uncheckedCast(locales));
}
@JsOverlay
public final String toLocaleString(String[] locales) {
return toLocaleString(Js.>uncheckedCast(locales));
}
public native String toLocaleString(
JsNumber.ToLocaleStringLocalesUnionType locales, JsObject options);
@JsOverlay
public final String toLocaleString(
JsNumber.ToLocaleStringLocalesUnionType locales, Object options) {
return toLocaleString(locales, Js.uncheckedCast(options));
}
public native String toLocaleString(JsNumber.ToLocaleStringLocalesUnionType locales);
public native String toPrecision();
public native String toPrecision(double precision);
@JsOverlay
public final String toString(JsNumber radix) {
return toString(Js.uncheckedCast(radix));
}
public native String toString(JsNumber.ToStringRadixUnionType radix);
@JsOverlay
public final String toString(int radix) {
return toString(Js.uncheckedCast(radix));
}
@JsMethod(name = "toString")
public native String toString_();
public native double valueOf();
}