All Downloads are FREE. Search and download functionalities are using the official Maven repository.

libcore.util.EmptyArray Maven / Gradle / Ivy

Go to download

JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.

There is a newer version: 0.6.8
Show newest version
package libcore.util;

public final class EmptyArray {
	private EmptyArray() {
	}

	public static final boolean[] BOOLEAN = new boolean[0];
	public static final byte[] BYTE = new byte[0];
	public static final char[] CHAR = new char[0];
	public static final double[] DOUBLE = new double[0];
	public static final int[] INT = new int[0];

	public static final Class[] CLASS = new Class[0];
	public static final Object[] OBJECT = new Object[0];
	public static final String[] STRING = new String[0];
	public static final Throwable[] THROWABLE = new Throwable[0];
	public static final StackTraceElement[] STACK_TRACE_ELEMENT = new StackTraceElement[0];
	public static final java.lang.reflect.Type[] TYPE = new java.lang.reflect.Type[0];
	public static final java.lang.reflect.TypeVariable[] TYPE_VARIABLE =
		new java.lang.reflect.TypeVariable[0];
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy