/telephony/java/android/telephony/CellSignalStrength.java

http://github.com/android/platform_frameworks_base · Java · 83 lines · 23 code · 17 blank · 43 comment · 0 complexity · 743f064233153020bba7b4a60eb6bf69 MD5 · raw file

  1. /*
  2. * Copyright (C) 2012 The Android Open Source Project
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package android.telephony;
  17. /**
  18. * Abstract base class for cell phone signal strength related information.
  19. */
  20. public abstract class CellSignalStrength {
  21. public static final int SIGNAL_STRENGTH_NONE_OR_UNKNOWN = 0;
  22. public static final int SIGNAL_STRENGTH_POOR = 1;
  23. public static final int SIGNAL_STRENGTH_MODERATE = 2;
  24. public static final int SIGNAL_STRENGTH_GOOD = 3;
  25. public static final int SIGNAL_STRENGTH_GREAT = 4;
  26. /** @hide */
  27. public static final int NUM_SIGNAL_STRENGTH_BINS = 5;
  28. /** @hide */
  29. public static final String[] SIGNAL_STRENGTH_NAMES = {
  30. "none", "poor", "moderate", "good", "great"
  31. };
  32. /** @hide */
  33. protected CellSignalStrength() {
  34. }
  35. /** @hide */
  36. public abstract void setDefaultValues();
  37. /**
  38. * Get signal level as an int from 0..4
  39. * <p>
  40. * @see SIGNAL_STRENGTH_NONE_OR_UNKNOWN
  41. * @see SIGNAL_STRENGTH_POOR
  42. * @see SIGNAL_STRENGTH_MODERATE
  43. * @see SIGNAL_STRENGTH_GOOD
  44. * @see SIGNAL_STRENGTH_GREAT
  45. */
  46. public abstract int getLevel();
  47. /**
  48. * Get the signal level as an asu value between 0..31, 99 is unknown
  49. */
  50. public abstract int getAsuLevel();
  51. /**
  52. * Get the signal strength as dBm
  53. */
  54. public abstract int getDbm();
  55. /**
  56. * Copies the CellSignalStrength.
  57. *
  58. * @return A deep copy of this class.
  59. * @hide
  60. */
  61. public abstract CellSignalStrength copy();
  62. @Override
  63. public abstract int hashCode();
  64. @Override
  65. public abstract boolean equals (Object o);
  66. }