Advertisement
manfromnn

RIL_QosClass.java_ZTE_V790

Aug 15th, 2014
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.78 KB | None | 0 0
  1. package com.android.internal.telephony;
  2.  
  3. class RIL_QosClass
  4. {
  5.   public static final int RIL_QOS_BACKGROUND = 3;
  6.   public static final int RIL_QOS_CONVERSATIONAL = 0;
  7.   public static final int RIL_QOS_INTERACTIVE = 2;
  8.   public static final int RIL_QOS_STREAMING = 1;
  9.  
  10.   public static String getName(int paramInt)
  11.   {
  12.     switch (paramInt)
  13.     {
  14.     default:
  15.       return null;
  16.     case 0:
  17.       return "RIL_QOS_CONVERSATIONAL";
  18.     case 1:
  19.       return "RIL_QOS_STREAMING";
  20.     case 2:
  21.       return "RIL_QOS_INTERACTIVE";
  22.     }
  23.     return "RIL_QOS_BACKGROUND";
  24.   }
  25. }
  26.  
  27.  
  28.  
  29. /* Location:           C:\AndroidMultitool\JD-gui\Stock\Framework\framework-dex2jar.jar
  30.  
  31.  * Qualified Name:     com.android.internal.telephony.RIL_QosClass
  32.  
  33.  * JD-Core Version:    0.7.0.1
  34.  
  35.  */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement