Java tutorial
//package com.java2s; //License from project: Apache License import android.os.Bundle; import java.io.Serializable; public class Main { public static <T extends Serializable> Bundle putArgument(Bundle bundle, String key, T object) { bundle.putSerializable(key, object); return bundle; } }