Home | History | Annotate | Download | only in telecom

Lines Matching full:capability

134      * Whether the given capabilities support the specified capability.
136 * @param capabilities A capability bit field.
137 * @param capability The capability to check capabilities for.
138 * @return Whether the specified capability is supported.
141 public static boolean can(int capabilities, int capability) {
142 return (capabilities & capability) != 0;
146 * Whether the capabilities of this {@code Connection} supports the specified capability.
148 * @param capability The capability to check capabilities for.
149 * @return Whether the specified capability is supported.
152 public boolean can(int capability) {
153 return can(mConnectionCapabilities, capability);
157 * Removes the specified capability from the set of capabilities of this {@code Conference}.
159 * @param capability The capability to remove from the set.
162 public void removeCapability(int capability) {
163 mConnectionCapabilities &= ~capability;
167 * Adds the specified capability to the set of capabilities of this {@code Conference}.
169 * @param capability The capability to add to the set.
172 public void addCapability(int capability) {
173 mConnectionCapabilities |= capability;
243 * capability {@link Connection#CAPABILITY_MERGE_CONFERENCE}.
249 * capability {@link Connection#CAPABILITY_SWAP_CONFERENCE}.