mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
25 lines
611 B
Java
Generated
25 lines
611 B
Java
Generated
// Generated automatically from javax.json.JsonNumber for testing purposes
|
|
|
|
package javax.json;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.math.BigInteger;
|
|
import javax.json.JsonValue;
|
|
|
|
public interface JsonNumber extends JsonValue
|
|
{
|
|
BigDecimal bigDecimalValue();
|
|
BigInteger bigIntegerValue();
|
|
BigInteger bigIntegerValueExact();
|
|
String toString();
|
|
boolean equals(Object p0);
|
|
boolean isIntegral();
|
|
default Number numberValue(){ return null; }
|
|
double doubleValue();
|
|
int hashCode();
|
|
int intValue();
|
|
int intValueExact();
|
|
long longValue();
|
|
long longValueExact();
|
|
}
|