summaryrefslogtreecommitdiff
path: root/java/com/android/incallui/incall/protocol/InCallButtonIdsExtension.java
blob: 5239d9d34472d6f3725ffdf4ba3678211eb6c050 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
 * Copyright (C) 2016 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License
 */

package com.android.incallui.incall.protocol;

/** Utility class for {@link InCallButtonIds}. */
public class InCallButtonIdsExtension {

  /**
   * Converts the given {@link InCallButtonIds} to a human readable string.
   *
   * @param id the id to convert.
   * @return the human readable string.
   */
  public static String toString(@InCallButtonIds int id) {
    if (id == InCallButtonIds.BUTTON_AUDIO) {
      return "AUDIO";
    } else if (id == InCallButtonIds.BUTTON_MUTE) {
      return "MUTE";
    } else if (id == InCallButtonIds.BUTTON_DIALPAD) {
      return "DIALPAD";
    } else if (id == InCallButtonIds.BUTTON_HOLD) {
      return "HOLD";
    } else if (id == InCallButtonIds.BUTTON_SWAP) {
      return "SWAP";
    } else if (id == InCallButtonIds.BUTTON_UPGRADE_TO_VIDEO) {
      return "UPGRADE_TO_VIDEO";
    } else if (id == InCallButtonIds.BUTTON_DOWNGRADE_TO_AUDIO) {
      return "DOWNGRADE_TO_AUDIO";
    } else if (id == InCallButtonIds.BUTTON_SWITCH_CAMERA) {
      return "SWITCH_CAMERA";
    } else if (id == InCallButtonIds.BUTTON_ADD_CALL) {
      return "ADD_CALL";
    } else if (id == InCallButtonIds.BUTTON_MERGE) {
      return "MERGE";
    } else if (id == InCallButtonIds.BUTTON_PAUSE_VIDEO) {
      return "PAUSE_VIDEO";
    } else if (id == InCallButtonIds.BUTTON_MANAGE_VIDEO_CONFERENCE) {
      return "MANAGE_VIDEO_CONFERENCE";
    } else if (id == InCallButtonIds.BUTTON_MANAGE_VOICE_CONFERENCE) {
      return "MANAGE_VOICE_CONFERENCE";
    } else if (id == InCallButtonIds.BUTTON_SWITCH_TO_SECONDARY) {
      return "SWITCH_TO_SECONDARY";
    } else if (id == InCallButtonIds.BUTTON_SWAP_SIM) {
      return "SWAP_SIM";
    } else if (id == InCallButtonIds.BUTTON_UPGRADE_TO_RTT) {
      return "UPGRADE_TO_RTT";
    } else {
      return "INVALID_BUTTON: " + id;
    }
  }
}