Files
codeql/java/ql/test/stubs/google-android-9.0.0/android/view/autofill/AutofillValue.java
Tony Torralba a59a4024a5 Update stubs
2022-01-14 10:32:36 +01:00

30 lines
1.2 KiB
Java
Generated

// Generated automatically from android.view.autofill.AutofillValue for testing purposes
package android.view.autofill;
import android.os.Parcel;
import android.os.Parcelable;
public class AutofillValue implements Parcelable
{
protected AutofillValue() {}
public CharSequence getTextValue(){ return null; }
public String toString(){ return null; }
public boolean equals(Object p0){ return false; }
public boolean getToggleValue(){ return false; }
public boolean isDate(){ return false; }
public boolean isList(){ return false; }
public boolean isText(){ return false; }
public boolean isToggle(){ return false; }
public int describeContents(){ return 0; }
public int getListValue(){ return 0; }
public int hashCode(){ return 0; }
public long getDateValue(){ return 0; }
public static AutofillValue forDate(long p0){ return null; }
public static AutofillValue forList(int p0){ return null; }
public static AutofillValue forText(CharSequence p0){ return null; }
public static AutofillValue forToggle(boolean p0){ return null; }
public static Parcelable.Creator<AutofillValue> CREATOR = null;
public void writeToParcel(Parcel p0, int p1){}
}