mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
30 lines
1.2 KiB
Java
Generated
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){}
|
|
}
|