/**@class android.net.NetworkPolicy implements android.os.Parcelable implements java.lang.Comparable @extends java.lang.Object Policy for networks matching a {@link android.net.NetworkTemplate}, including usage cycle and limits to be enforced. @hide */ var NetworkPolicy = { /***/ CYCLE_NONE : "-1", /***/ WARNING_DISABLED : "-1", /***/ LIMIT_DISABLED : "-1", /***/ SNOOZE_NEVER : "-1", /***/ template : "null", /***/ cycleDay : "null", /***/ cycleTimezone : "null", /***/ warningBytes : "null", /***/ limitBytes : "null", /***/ lastWarningSnooze : "null", /***/ lastLimitSnooze : "null", /***/ metered : "null", /***/ inferred : "null", /***/ CREATOR : "null", /** */ writeToParcel : function( ) {}, /** */ describeContents : function( ) {}, /**Test if given measurement is over {@link #warningBytes}. */ isOverWarning : function( ) {}, /**Test if given measurement is near enough to {@link #limitBytes} to be considered over-limit. */ isOverLimit : function( ) {}, /**Clear any existing snooze values, setting to {@link #SNOOZE_NEVER}. */ clearSnooze : function( ) {}, /**Test if this policy has a cycle defined, after which usage should reset. */ hasCycle : function( ) {}, /** */ compareTo : function( ) {}, /** */ hashCode : function( ) {}, /** */ equals : function( ) {}, /** */ toString : function( ) {}, };