-
- All Implemented Interfaces:
-
android.os.Parcelable,com.facebook.share.model.ShareModel
public class CameraEffectArguments implements ShareModel
This class represents a set of Arguments that are used to configure an Effect in the Camera.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classCameraEffectArguments.BuilderBuilder for the com.facebook.share.model.CameraEffectArguments class.
-
Field Summary
Fields Modifier and Type Field Description public final static Parcelable.Creator<CameraEffectArguments>CREATOR
-
Method Summary
Modifier and Type Method Description StringgetString(String key)Returns the value of a String argument associated with the passed in key. Array<String>getStringArray(String key)Objectget(String key)Set<String>keySet()The set of keys that have been set in this instance of CameraEffectArguments intdescribeContents()voidwriteToParcel(Parcel out, int flags)-
-
Method Detail
-
getString
@Nullable() String getString(String key)
Returns the value of a String argument associated with the passed in key. If the key does notexist, or if it points to an object that is not a String, null will be returned.
- Parameters:
key- Key for the value desired.
-
getStringArray
@Nullable() Array<String> getStringArray(String key)
-
keySet
Set<String> keySet()
The set of keys that have been set in this instance of CameraEffectArguments
-
describeContents
int describeContents()
-
writeToParcel
void writeToParcel(Parcel out, int flags)
-
-
-
-