Home | History | Annotate | Download | only in nfc_extras

Lines Matching refs:ROUTE_OFF

63     private static final CardEmulationRoute ROUTE_OFF =
64 new CardEmulationRoute(CardEmulationRoute.ROUTE_OFF, null);
129 public static final int ROUTE_OFF = 1;
138 * A route such as {@link #ROUTE_OFF} or {@link #ROUTE_ON_WHEN_SCREEN_ON}.
144 * <p>null if {@link #route} is {@link #ROUTE_OFF}, otherwise not null.
149 if (route == ROUTE_OFF && nfcEe != null) {
150 throw new IllegalArgumentException("must not specifiy a NFC-EE with ROUTE_OFF");
151 } else if (route != ROUTE_OFF && nfcEe == null) {
181 return route == CardEmulationRoute.ROUTE_OFF ?
182 ROUTE_OFF :
186 return ROUTE_OFF;