Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5 0.98 KB | None | 0 0
  1. // IntelliJ API Decompiler stub source generated from a class file
  2. // Implementation of methods is not available
  3.  
  4. package android.location;
  5.  
  6. public abstract class LocationProvider  {
  7.     public static final int OUT_OF_SERVICE = 0;
  8.     public static final int TEMPORARILY_UNAVAILABLE = 1;
  9.     public static final int AVAILABLE = 2;
  10.    
  11.     LocationProvider() { /* compiled code */ }
  12.    
  13.     public java.lang.String getName() { /* compiled code */ }
  14.    
  15.     public boolean meetsCriteria(android.location.Criteria criteria) { /* compiled code */ }
  16.    
  17.     public abstract boolean requiresNetwork();
  18.    
  19.     public abstract boolean requiresSatellite();
  20.    
  21.     public abstract boolean requiresCell();
  22.    
  23.     public abstract boolean hasMonetaryCost();
  24.    
  25.     public abstract boolean supportsAltitude();
  26.    
  27.     public abstract boolean supportsSpeed();
  28.    
  29.     public abstract boolean supportsBearing();
  30.    
  31.     public abstract int getPowerRequirement();
  32.    
  33.     public abstract int getAccuracy();
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement