FileDocCategorySizeDatePackage
ProviderPropertiesUnbundled.javaAPI DocAndroid 5.1 API1947Thu Mar 12 22:22:30 GMT 2015com.android.location.provider

ProviderPropertiesUnbundled

public final class ProviderPropertiesUnbundled extends Object
This class is an interface to Provider Properties for unbundled applications.

IMPORTANT: This class is effectively a public API for unbundled applications, and must remain API stable. See README.txt in the root of this package for more information.

Fields Summary
private final com.android.internal.location.ProviderProperties
mProperties
Constructors Summary
private ProviderPropertiesUnbundled(com.android.internal.location.ProviderProperties properties)

        mProperties = properties;
    
Methods Summary
public static com.android.location.provider.ProviderPropertiesUnbundledcreate(boolean requiresNetwork, boolean requiresSatellite, boolean requiresCell, boolean hasMonetaryCost, boolean supportsAltitude, boolean supportsSpeed, boolean supportsBearing, int powerRequirement, int accuracy)

        return new ProviderPropertiesUnbundled(new ProviderProperties(requiresNetwork,
                requiresSatellite, requiresCell, hasMonetaryCost, supportsAltitude, supportsSpeed,
                supportsBearing, powerRequirement, accuracy));
    
public com.android.internal.location.ProviderPropertiesgetProviderProperties()

        return mProperties;
    
public java.lang.StringtoString()

        return mProperties.toString();