org.androidannotations.api.builder.FragmentBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidannotations-api Show documentation
Show all versions of androidannotations-api Show documentation
The API jar containing the annotations and the runtime helpers
/**
* Copyright (C) 2010-2016 eBusiness Information, Excilys Group
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed To in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package org.androidannotations.api.builder;
import java.io.Serializable;
import java.util.ArrayList;
import android.os.Bundle;
import android.os.Parcelable;
import android.util.SparseArray;
@SuppressWarnings("unchecked")
public abstract class FragmentBuilder, F> extends Builder {
protected Bundle args;
public FragmentBuilder() {
args = new Bundle();
}
public abstract F build();
public I arg(Bundle map) {
args.putAll(map);
return (I) this;
}
public I arg(String key, boolean value) {
args.putBoolean(key, value);
return (I) this;
}
public I arg(String key, byte value) {
args.putByte(key, value);
return (I) this;
}
public I arg(String key, char value) {
args.putChar(key, value);
return (I) this;
}
public I arg(String key, short value) {
args.putShort(key, value);
return (I) this;
}
public I arg(String key, int value) {
args.putInt(key, value);
return (I) this;
}
public I arg(String key, long value) {
args.putLong(key, value);
return (I) this;
}
public I arg(String key, float value) {
args.putFloat(key, value);
return (I) this;
}
public I arg(String key, double value) {
args.putDouble(key, value);
return (I) this;
}
public I arg(String key, String value) {
args.putString(key, value);
return (I) this;
}
public I arg(String key, CharSequence value) {
args.putCharSequence(key, value);
return (I) this;
}
public I arg(String key, Parcelable value) {
args.putParcelable(key, value);
return (I) this;
}
public I arg(String key, Parcelable[] value) {
args.putParcelableArray(key, value);
return (I) this;
}
public I parcelableArrayListArg(String key, ArrayList extends Parcelable> value) {
args.putParcelableArrayList(key, value);
return (I) this;
}
public I arg(String key, SparseArray extends Parcelable> value) {
args.putSparseParcelableArray(key, value);
return (I) this;
}
public I integerArrayListArg(String key, ArrayList value) {
args.putIntegerArrayList(key, value);
return (I) this;
}
public I stringArrayListArg(String key, ArrayList value) {
args.putStringArrayList(key, value);
return (I) this;
}
public I arg(String key, Serializable value) {
args.putSerializable(key, value);
return (I) this;
}
public I arg(String key, boolean[] value) {
args.putBooleanArray(key, value);
return (I) this;
}
public I arg(String key, byte[] value) {
args.putByteArray(key, value);
return (I) this;
}
public I arg(String key, short[] value) {
args.putShortArray(key, value);
return (I) this;
}
public I arg(String key, char[] value) {
args.putCharArray(key, value);
return (I) this;
}
public I arg(String key, int[] value) {
args.putIntArray(key, value);
return (I) this;
}
public I arg(String key, long[] value) {
args.putLongArray(key, value);
return (I) this;
}
public I arg(String key, float[] value) {
args.putFloatArray(key, value);
return (I) this;
}
public I arg(String key, double[] value) {
args.putDoubleArray(key, value);
return (I) this;
}
public I arg(String key, String[] value) {
args.putStringArray(key, value);
return (I) this;
}
public I arg(String key, Bundle value) {
args.putBundle(key, value);
return (I) this;
}
public Bundle args() {
return args;
}
}