Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.android.internal.telephony;
- class RIL_QosClass
- {
- public static final int RIL_QOS_BACKGROUND = 3;
- public static final int RIL_QOS_CONVERSATIONAL = 0;
- public static final int RIL_QOS_INTERACTIVE = 2;
- public static final int RIL_QOS_STREAMING = 1;
- public static String getName(int paramInt)
- {
- switch (paramInt)
- {
- default:
- return null;
- case 0:
- return "RIL_QOS_CONVERSATIONAL";
- case 1:
- return "RIL_QOS_STREAMING";
- case 2:
- return "RIL_QOS_INTERACTIVE";
- }
- return "RIL_QOS_BACKGROUND";
- }
- }
- /* Location: C:\AndroidMultitool\JD-gui\Stock\Framework\framework-dex2jar.jar
- * Qualified Name: com.android.internal.telephony.RIL_QosClass
- * JD-Core Version: 0.7.0.1
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement