blob: 4114fe74fd7ad74873ab0af6e893ed5e84641720 [file] [log] [blame]
/*
* This file is auto-generated. DO NOT MODIFY.
*/
package android.aidl.tests;
public @interface IntEnum {
public static final int FOO = 1000;
public static final int BAR = 2000;
public static final int BAZ = 2001;
/** @deprecated do not use this */
@Deprecated
public static final int QUX = 2002;
interface $ {
static String toString(int _aidl_v) {
if (_aidl_v == FOO) return "FOO";
if (_aidl_v == BAR) return "BAR";
if (_aidl_v == BAZ) return "BAZ";
if (_aidl_v == QUX) return "QUX";
return Integer.toString(_aidl_v);
}
static String arrayToString(Object _aidl_v) {
if (_aidl_v == null) return "null";
Class<?> _aidl_cls = _aidl_v.getClass();
if (!_aidl_cls.isArray()) throw new IllegalArgumentException("not an array: " + _aidl_v);
Class<?> comp = _aidl_cls.getComponentType();
java.util.StringJoiner _aidl_sj = new java.util.StringJoiner(", ", "[", "]");
if (comp.isArray()) {
for (int _aidl_i = 0; _aidl_i < java.lang.reflect.Array.getLength(_aidl_v); _aidl_i++) {
_aidl_sj.add(arrayToString(java.lang.reflect.Array.get(_aidl_v, _aidl_i)));
}
} else {
if (_aidl_cls != int[].class) throw new IllegalArgumentException("wrong type: " + _aidl_cls);
for (int e : (int[]) _aidl_v) {
_aidl_sj.add(toString(e));
}
}
return _aidl_sj.toString();
}
}
}