-
- All Implemented Interfaces:
-
com.facebook.share.ShareBuilder,com.facebook.share.model.ShareModelBuilder
public final class CameraEffectArguments.Builder implements ShareModelBuilder<CameraEffectArguments, CameraEffectArguments.Builder>
Builder for the com.facebook.share.model.CameraEffectArguments class.
-
-
Constructor Summary
Constructors Constructor Description CameraEffectArguments.Builder()
-
Method Summary
Modifier and Type Method Description final CameraEffectArguments.BuilderputArgument(String key, String value)Sets the passed in value for the passed in key. final CameraEffectArguments.BuilderputArgument(String key, Array<String> arrayValue)Sets the passed in value for the passed in key. CameraEffectArguments.BuilderreadFrom(CameraEffectArguments model)Reads the values from a ShareModel into the builder. final CameraEffectArguments.BuilderreadFrom(Parcel parcel)This method is for internal use only. CameraEffectArgumentsbuild()Creates a new instance of CameraEffectArguments with the arguments that have been set in this Builder instance. -
-
Method Detail
-
putArgument
final CameraEffectArguments.Builder putArgument(String key, String value)
Sets the passed in value for the passed in key. This will override any previous calls with the same key.
- Parameters:
key- Key for the argumentvalue- Value of the argument
-
putArgument
final CameraEffectArguments.Builder putArgument(String key, Array<String> arrayValue)
Sets the passed in value for the passed in key. This will override any previous calls with the same key.
- Parameters:
key- Key for the argumentarrayValue- Value of the argument
-
readFrom
CameraEffectArguments.Builder readFrom(CameraEffectArguments model)
Reads the values from a ShareModel into the builder.
- Parameters:
model- The source ShareModel
-
readFrom
final CameraEffectArguments.Builder readFrom(Parcel parcel)
This method is for internal use only.
-
build
CameraEffectArguments build()
Creates a new instance of CameraEffectArguments with the arguments that have been set in this Builder instance.
-
-
-
-