blob: 9afbb48fb143d352e66f6ede0bf7549960770c1a [file] [log] [blame]
/*
* This file is auto-generated. DO NOT MODIFY.
*/
package android.hardware.radio.data;
public @interface ApnAuthType {
public static final int NO_PAP_NO_CHAP = 0;
public static final int PAP_NO_CHAP = 1;
public static final int NO_PAP_CHAP = 2;
public static final int PAP_CHAP = 3;
interface $ {
static String toString(int _aidl_v) {
if (_aidl_v == NO_PAP_NO_CHAP) return "NO_PAP_NO_CHAP";
if (_aidl_v == PAP_NO_CHAP) return "PAP_NO_CHAP";
if (_aidl_v == NO_PAP_CHAP) return "NO_PAP_CHAP";
if (_aidl_v == PAP_CHAP) return "PAP_CHAP";
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();
}
}
}