Fields Summary |
---|
public static final int | RESULT_SUCCESSProgram result: success. |
public static final int | RESULT_MEMORY_LIMIT_EXCEEDEDProgram result: memory limit exceeded. |
public static final int | RESULT_CATEGORY_LIMIT_EXCEEDEDProgram result: limit exceeded. |
public static final int | RESULT_CATEGORY_ALREADY_ADDEDProgram result: category already opted in. |
public static final int | RESULT_CATEGORY_ALREADY_DELETEDProgram result: category already opted in. |
public static final int | RESULT_INVALID_MAX_MESSAGESProgram result: invalid MAX_MESSAGES. |
public static final int | RESULT_INVALID_ALERT_OPTIONProgram result: invalid ALERT_OPTION. |
public static final int | RESULT_INVALID_CATEGORY_NAMEProgram result: invalid service category name. |
public static final int | RESULT_UNSPECIFIED_FAILUREProgram result: unspecified programming failure. |
private final int | mCategoryService category to modify. |
private final int | mLanguageLanguage used for service category name (defined in BearerData.LANGUAGE_*). |
private final int | mCategoryResultResult of service category programming for this category. |
public static final Parcelable.Creator | CREATORCreator for unparcelling objects. |
Methods Summary |
---|
public int | describeContents()Describe the kinds of special objects contained in the marshalled representation.
return 0;
|
public int | getCategory()Returns the CDMA service category to modify.
return mCategory;
|
public int | getCategoryResult()Returns the result of service programming for this category
return mCategoryResult;
|
public int | getLanguage()Returns the CDMA language code for this service category.
return mLanguage;
|
public java.lang.String | toString()
return "CdmaSmsCbProgramResults{category=" + mCategory
+ ", language=" + mLanguage + ", result=" + mCategoryResult + '}";
|
public void | writeToParcel(android.os.Parcel dest, int flags)Flatten this object into a Parcel.
dest.writeInt(mCategory);
dest.writeInt(mLanguage);
dest.writeInt(mCategoryResult);
|