324 lines
9.0 KiB
Java
324 lines
9.0 KiB
Java
![]() |
/*
|
||
|
* This file is auto-generated. DO NOT MODIFY.
|
||
|
* Using: out/host/linux-x86/bin/aidl --lang=java --structured --version 2 --hash f8d74c149f04e76b6d622db2bd8e465dae24b08c --stability vintf --min_sdk_version current -pout/soong/.intermediates/hardware/interfaces/common/aidl/android.hardware.common_interface/2/preprocessed.aidl -pout/soong/.intermediates/hardware/interfaces/common/fmq/aidl/android.hardware.common.fmq_interface/1/preprocessed.aidl --ninja -d out/soong/.intermediates/hardware/interfaces/tv/tuner/aidl/android.hardware.tv.tuner-V2-java-source/gen/android/hardware/tv/tuner/FrontendModulation.java.d -o out/soong/.intermediates/hardware/interfaces/tv/tuner/aidl/android.hardware.tv.tuner-V2-java-source/gen -Nhardware/interfaces/tv/tuner/aidl/aidl_api/android.hardware.tv.tuner/2 hardware/interfaces/tv/tuner/aidl/aidl_api/android.hardware.tv.tuner/2/android/hardware/tv/tuner/FrontendModulation.aidl
|
||
|
*/
|
||
|
package android.hardware.tv.tuner;
|
||
|
/** @hide */
|
||
|
public final class FrontendModulation implements android.os.Parcelable {
|
||
|
// tags for union fields
|
||
|
public final static int dvbc = 0; // android.hardware.tv.tuner.FrontendDvbcModulation dvbc;
|
||
|
public final static int dvbs = 1; // android.hardware.tv.tuner.FrontendDvbsModulation dvbs;
|
||
|
public final static int dvbt = 2; // android.hardware.tv.tuner.FrontendDvbtConstellation dvbt;
|
||
|
public final static int isdbs = 3; // android.hardware.tv.tuner.FrontendIsdbsModulation isdbs;
|
||
|
public final static int isdbs3 = 4; // android.hardware.tv.tuner.FrontendIsdbs3Modulation isdbs3;
|
||
|
public final static int isdbt = 5; // android.hardware.tv.tuner.FrontendIsdbtModulation isdbt;
|
||
|
public final static int atsc = 6; // android.hardware.tv.tuner.FrontendAtscModulation atsc;
|
||
|
public final static int atsc3 = 7; // android.hardware.tv.tuner.FrontendAtsc3Modulation atsc3;
|
||
|
public final static int dtmb = 8; // android.hardware.tv.tuner.FrontendDtmbModulation dtmb;
|
||
|
|
||
|
private int _tag;
|
||
|
private Object _value;
|
||
|
|
||
|
public FrontendModulation() {
|
||
|
int _value = android.hardware.tv.tuner.FrontendDvbcModulation.UNDEFINED;
|
||
|
this._tag = dvbc;
|
||
|
this._value = _value;
|
||
|
}
|
||
|
|
||
|
private FrontendModulation(android.os.Parcel _aidl_parcel) {
|
||
|
readFromParcel(_aidl_parcel);
|
||
|
}
|
||
|
|
||
|
private FrontendModulation(int _tag, Object _value) {
|
||
|
this._tag = _tag;
|
||
|
this._value = _value;
|
||
|
}
|
||
|
|
||
|
public int getTag() {
|
||
|
return _tag;
|
||
|
}
|
||
|
|
||
|
// android.hardware.tv.tuner.FrontendDvbcModulation dvbc;
|
||
|
|
||
|
public static FrontendModulation dvbc(int _value) {
|
||
|
return new FrontendModulation(dvbc, _value);
|
||
|
}
|
||
|
|
||
|
public int getDvbc() {
|
||
|
_assertTag(dvbc);
|
||
|
return (int) _value;
|
||
|
}
|
||
|
|
||
|
public void setDvbc(int _value) {
|
||
|
_set(dvbc, _value);
|
||
|
}
|
||
|
|
||
|
// android.hardware.tv.tuner.FrontendDvbsModulation dvbs;
|
||
|
|
||
|
public static FrontendModulation dvbs(int _value) {
|
||
|
return new FrontendModulation(dvbs, _value);
|
||
|
}
|
||
|
|
||
|
public int getDvbs() {
|
||
|
_assertTag(dvbs);
|
||
|
return (int) _value;
|
||
|
}
|
||
|
|
||
|
public void setDvbs(int _value) {
|
||
|
_set(dvbs, _value);
|
||
|
}
|
||
|
|
||
|
// android.hardware.tv.tuner.FrontendDvbtConstellation dvbt;
|
||
|
|
||
|
public static FrontendModulation dvbt(int _value) {
|
||
|
return new FrontendModulation(dvbt, _value);
|
||
|
}
|
||
|
|
||
|
public int getDvbt() {
|
||
|
_assertTag(dvbt);
|
||
|
return (int) _value;
|
||
|
}
|
||
|
|
||
|
public void setDvbt(int _value) {
|
||
|
_set(dvbt, _value);
|
||
|
}
|
||
|
|
||
|
// android.hardware.tv.tuner.FrontendIsdbsModulation isdbs;
|
||
|
|
||
|
public static FrontendModulation isdbs(int _value) {
|
||
|
return new FrontendModulation(isdbs, _value);
|
||
|
}
|
||
|
|
||
|
public int getIsdbs() {
|
||
|
_assertTag(isdbs);
|
||
|
return (int) _value;
|
||
|
}
|
||
|
|
||
|
public void setIsdbs(int _value) {
|
||
|
_set(isdbs, _value);
|
||
|
}
|
||
|
|
||
|
// android.hardware.tv.tuner.FrontendIsdbs3Modulation isdbs3;
|
||
|
|
||
|
public static FrontendModulation isdbs3(int _value) {
|
||
|
return new FrontendModulation(isdbs3, _value);
|
||
|
}
|
||
|
|
||
|
public int getIsdbs3() {
|
||
|
_assertTag(isdbs3);
|
||
|
return (int) _value;
|
||
|
}
|
||
|
|
||
|
public void setIsdbs3(int _value) {
|
||
|
_set(isdbs3, _value);
|
||
|
}
|
||
|
|
||
|
// android.hardware.tv.tuner.FrontendIsdbtModulation isdbt;
|
||
|
|
||
|
public static FrontendModulation isdbt(int _value) {
|
||
|
return new FrontendModulation(isdbt, _value);
|
||
|
}
|
||
|
|
||
|
public int getIsdbt() {
|
||
|
_assertTag(isdbt);
|
||
|
return (int) _value;
|
||
|
}
|
||
|
|
||
|
public void setIsdbt(int _value) {
|
||
|
_set(isdbt, _value);
|
||
|
}
|
||
|
|
||
|
// android.hardware.tv.tuner.FrontendAtscModulation atsc;
|
||
|
|
||
|
public static FrontendModulation atsc(int _value) {
|
||
|
return new FrontendModulation(atsc, _value);
|
||
|
}
|
||
|
|
||
|
public int getAtsc() {
|
||
|
_assertTag(atsc);
|
||
|
return (int) _value;
|
||
|
}
|
||
|
|
||
|
public void setAtsc(int _value) {
|
||
|
_set(atsc, _value);
|
||
|
}
|
||
|
|
||
|
// android.hardware.tv.tuner.FrontendAtsc3Modulation atsc3;
|
||
|
|
||
|
public static FrontendModulation atsc3(int _value) {
|
||
|
return new FrontendModulation(atsc3, _value);
|
||
|
}
|
||
|
|
||
|
public int getAtsc3() {
|
||
|
_assertTag(atsc3);
|
||
|
return (int) _value;
|
||
|
}
|
||
|
|
||
|
public void setAtsc3(int _value) {
|
||
|
_set(atsc3, _value);
|
||
|
}
|
||
|
|
||
|
// android.hardware.tv.tuner.FrontendDtmbModulation dtmb;
|
||
|
|
||
|
public static FrontendModulation dtmb(int _value) {
|
||
|
return new FrontendModulation(dtmb, _value);
|
||
|
}
|
||
|
|
||
|
public int getDtmb() {
|
||
|
_assertTag(dtmb);
|
||
|
return (int) _value;
|
||
|
}
|
||
|
|
||
|
public void setDtmb(int _value) {
|
||
|
_set(dtmb, _value);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public final int getStability() {
|
||
|
return android.os.Parcelable.PARCELABLE_STABILITY_VINTF;
|
||
|
}
|
||
|
|
||
|
public static final android.os.Parcelable.Creator<FrontendModulation> CREATOR = new android.os.Parcelable.Creator<FrontendModulation>() {
|
||
|
@Override
|
||
|
public FrontendModulation createFromParcel(android.os.Parcel _aidl_source) {
|
||
|
return new FrontendModulation(_aidl_source);
|
||
|
}
|
||
|
@Override
|
||
|
public FrontendModulation[] newArray(int _aidl_size) {
|
||
|
return new FrontendModulation[_aidl_size];
|
||
|
}
|
||
|
};
|
||
|
|
||
|
@Override
|
||
|
public final void writeToParcel(android.os.Parcel _aidl_parcel, int _aidl_flag) {
|
||
|
_aidl_parcel.writeInt(_tag);
|
||
|
switch (_tag) {
|
||
|
case dvbc:
|
||
|
_aidl_parcel.writeInt(getDvbc());
|
||
|
break;
|
||
|
case dvbs:
|
||
|
_aidl_parcel.writeInt(getDvbs());
|
||
|
break;
|
||
|
case dvbt:
|
||
|
_aidl_parcel.writeInt(getDvbt());
|
||
|
break;
|
||
|
case isdbs:
|
||
|
_aidl_parcel.writeInt(getIsdbs());
|
||
|
break;
|
||
|
case isdbs3:
|
||
|
_aidl_parcel.writeInt(getIsdbs3());
|
||
|
break;
|
||
|
case isdbt:
|
||
|
_aidl_parcel.writeInt(getIsdbt());
|
||
|
break;
|
||
|
case atsc:
|
||
|
_aidl_parcel.writeInt(getAtsc());
|
||
|
break;
|
||
|
case atsc3:
|
||
|
_aidl_parcel.writeInt(getAtsc3());
|
||
|
break;
|
||
|
case dtmb:
|
||
|
_aidl_parcel.writeInt(getDtmb());
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public void readFromParcel(android.os.Parcel _aidl_parcel) {
|
||
|
int _aidl_tag;
|
||
|
_aidl_tag = _aidl_parcel.readInt();
|
||
|
switch (_aidl_tag) {
|
||
|
case dvbc: {
|
||
|
int _aidl_value;
|
||
|
_aidl_value = _aidl_parcel.readInt();
|
||
|
_set(_aidl_tag, _aidl_value);
|
||
|
return; }
|
||
|
case dvbs: {
|
||
|
int _aidl_value;
|
||
|
_aidl_value = _aidl_parcel.readInt();
|
||
|
_set(_aidl_tag, _aidl_value);
|
||
|
return; }
|
||
|
case dvbt: {
|
||
|
int _aidl_value;
|
||
|
_aidl_value = _aidl_parcel.readInt();
|
||
|
_set(_aidl_tag, _aidl_value);
|
||
|
return; }
|
||
|
case isdbs: {
|
||
|
int _aidl_value;
|
||
|
_aidl_value = _aidl_parcel.readInt();
|
||
|
_set(_aidl_tag, _aidl_value);
|
||
|
return; }
|
||
|
case isdbs3: {
|
||
|
int _aidl_value;
|
||
|
_aidl_value = _aidl_parcel.readInt();
|
||
|
_set(_aidl_tag, _aidl_value);
|
||
|
return; }
|
||
|
case isdbt: {
|
||
|
int _aidl_value;
|
||
|
_aidl_value = _aidl_parcel.readInt();
|
||
|
_set(_aidl_tag, _aidl_value);
|
||
|
return; }
|
||
|
case atsc: {
|
||
|
int _aidl_value;
|
||
|
_aidl_value = _aidl_parcel.readInt();
|
||
|
_set(_aidl_tag, _aidl_value);
|
||
|
return; }
|
||
|
case atsc3: {
|
||
|
int _aidl_value;
|
||
|
_aidl_value = _aidl_parcel.readInt();
|
||
|
_set(_aidl_tag, _aidl_value);
|
||
|
return; }
|
||
|
case dtmb: {
|
||
|
int _aidl_value;
|
||
|
_aidl_value = _aidl_parcel.readInt();
|
||
|
_set(_aidl_tag, _aidl_value);
|
||
|
return; }
|
||
|
}
|
||
|
throw new IllegalArgumentException("union: unknown tag: " + _aidl_tag);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public int describeContents() {
|
||
|
int _mask = 0;
|
||
|
switch (getTag()) {
|
||
|
}
|
||
|
return _mask;
|
||
|
}
|
||
|
|
||
|
private void _assertTag(int tag) {
|
||
|
if (getTag() != tag) {
|
||
|
throw new IllegalStateException("bad access: " + _tagString(tag) + ", " + _tagString(getTag()) + " is available.");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private String _tagString(int _tag) {
|
||
|
switch (_tag) {
|
||
|
case dvbc: return "dvbc";
|
||
|
case dvbs: return "dvbs";
|
||
|
case dvbt: return "dvbt";
|
||
|
case isdbs: return "isdbs";
|
||
|
case isdbs3: return "isdbs3";
|
||
|
case isdbt: return "isdbt";
|
||
|
case atsc: return "atsc";
|
||
|
case atsc3: return "atsc3";
|
||
|
case dtmb: return "dtmb";
|
||
|
}
|
||
|
throw new IllegalStateException("unknown field: " + _tag);
|
||
|
}
|
||
|
|
||
|
private void _set(int _tag, Object _value) {
|
||
|
this._tag = _tag;
|
||
|
this._value = _value;
|
||
|
}
|
||
|
public static @interface Tag {
|
||
|
public static final int dvbc = 0;
|
||
|
public static final int dvbs = 1;
|
||
|
public static final int dvbt = 2;
|
||
|
public static final int isdbs = 3;
|
||
|
public static final int isdbs3 = 4;
|
||
|
public static final int isdbt = 5;
|
||
|
public static final int atsc = 6;
|
||
|
public static final int atsc3 = 7;
|
||
|
public static final int dtmb = 8;
|
||
|
}
|
||
|
}
|