-
- All Implemented Interfaces:
-
com.facebook.share.ShareBuilder,com.facebook.share.model.ShareModelBuilder
public class CameraEffectArguments.Builder implements ShareModelBuilder<CameraEffectArguments, CameraEffectArguments.Builder>
Builder for the com.facebook.share.model.CameraEffectArguments class.
-
-
Method Summary
Modifier and Type Method Description CameraEffectArguments.BuilderputArgument(String key, String value)Sets the passed in value for the passed in key. 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. CameraEffectArguments.BuilderreadFrom(Parcel parcel)CameraEffectArgumentsbuild()Creates a new instance of CameraEffectArguments with the arguments that have been set in thisBuilder instance. -
-
Method Detail
-
putArgument
CameraEffectArguments.Builder putArgument(String key, String value)
Sets the passed in value for the passed in key. This will override any previous calls withthe same key.
- Parameters:
key- Key for the argumentvalue- Value of the argument
-
putArgument
CameraEffectArguments.Builder putArgument(String key, Array<String> arrayValue)
Sets the passed in value for the passed in key. This will override any previous calls withthe 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
CameraEffectArguments.Builder readFrom(Parcel parcel)
-
build
CameraEffectArguments build()
Creates a new instance of CameraEffectArguments with the arguments that have been set in thisBuilder instance.
-
-
-
-