Android SDK Version
All Implemented Interfaces:
android.os.Parcelable , com.facebook.share.model.ShareModel


public final class CameraEffectArguments
 implements ShareModel
This class represents a set of Arguments that are used to configure an Effect in the Camera.
Nested Class Summary
Modifier and TypeClassDescription
public final classCameraEffectArguments.Builder
public classCameraEffectArguments.Companion
Method Summary
Modifier and TypeMethodDescription
final StringgetString(String key) Returns the value of a String argument associated with the passed in key.
final Array<String>getStringArray(String key) Returns the value of a String[] argument associated with the passed in key.
final Objectget(String key) Returns the value of the argument associated with the passed in key.
final Set<String>keySet() The set of keys that have been set in this instance of CameraEffectArguments
IntegerdescribeContents()
UnitwriteToParcel(Parcel out, Integer flags)
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Method Detail

getString

 final StringgetString(String key)
Returns the value of a String argument associated with the passed in key. If the key does not exist, or if it points to an object that is not a String, null will be returned.
Parameters:
key - Key for the value desired.

getStringArray

 final Array<String> getStringArray(String key)
Returns the value of a String[] argument associated with the passed in key. If the key does not exist, or if it points to an object that is not a String[], null will be returned.
Parameters:
key - Key for the value desired.

get

 final Objectget(String key)
Returns the value of the argument associated with the passed in key. If the key does not exist, null will be returned
Parameters:
key - Key for the value desired.

keySet

 final Set<String> keySet()
The set of keys that have been set in this instance of CameraEffectArguments

describeContents

IntegerdescribeContents()

writeToParcel

UnitwriteToParcel(Parcel out, Integer flags)