Path: blob/v3_openjdk/jre_lwjgl3glfw/src/main/java/android/util/EmptyArray.java
2129 views
/*1* Copyright (C) 2010 The Android Open Source Project2*3* Licensed under the Apache License, Version 2.0 (the "License");4* you may not use this file except in compliance with the License.5* You may obtain a copy of the License at6*7* http://www.apache.org/licenses/LICENSE-2.08*9* Unless required by applicable law or agreed to in writing, software10* distributed under the License is distributed on an "AS IS" BASIS,11* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.12* See the License for the specific language governing permissions and13* limitations under the License.14*/15package android.util;1617public final class EmptyArray {18private EmptyArray() {}19public static final boolean[] BOOLEAN = new boolean[0];20public static final byte[] BYTE = new byte[0];21public static final char[] CHAR = new char[0];22public static final double[] DOUBLE = new double[0];23public static final int[] INT = new int[0];24public static final Class<?>[] CLASS = new Class[0];25public static final Object[] OBJECT = new Object[0];26public static final String[] STRING = new String[0];27public static final Throwable[] THROWABLE = new Throwable[0];28public static final StackTraceElement[] STACK_TRACE_ELEMENT = new StackTraceElement[0];29}303132