本文整理汇总了Java中java.lang.Long类的典型用法代码示例。如果您正苦于以下问题:Java Long类的具体用法?Java Long怎么用?Java Long使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
Long类属于java.lang包,在下文中一共展示了Long类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: should_test_observable_interval
import java.lang.Long; //导入依赖的package包/类
@Test
public void should_test_observable_interval() {
TestScheduler scheduler = new TestScheduler();
final List<Long> result = new ArrayList<>();
Observable.interval(1, TimeUnit.SECONDS, scheduler)
.take(5)
.subscribe(new Action1<Long>() {
@Override
public void call(Long aLong) {
result.add(aLong);
}
});
assertTrue(result.isEmpty());
scheduler.advanceTimeBy(2, TimeUnit.SECONDS);
assertEquals(2, result.size());
scheduler.advanceTimeBy(10, TimeUnit.SECONDS);
assertEquals(5, result.size());
}
示例2: isDue
import java.lang.Long; //导入依赖的package包/类
/**
* 判断缓存的byte数据是否到期
*
* @param data
* @return true:到期了 false:还没有到期
*/
private static boolean isDue(byte[] data) {
String[] strs = getDateInfoFromDate(data);
if (strs != null && strs.length == 2) {
String saveTimeStr = strs[0];
while (saveTimeStr.startsWith("0")) {
saveTimeStr = saveTimeStr.substring(1, saveTimeStr.length());
}
long saveTime = Long.parseLong(saveTimeStr);
long deleteAfter = Long.parseLong(strs[1]);
if (System.currentTimeMillis() > saveTime + deleteAfter * 1000) {
return true;
}
}
return false;
}
示例3: BgReadingMessage
import java.lang.Long; //导入依赖的package包/类
public BgReadingMessage(Long timestamp, Double time_since_sensor_started, Double raw_data, Double filtered_data, Double age_adjusted_raw_value, Boolean calibration_flag, Double calculated_value, Double filtered_calculated_value, Double calculated_value_slope, Double a, Double b, Double c, Double ra, Double rb, Double rc, String uuid, String calibration_uuid, String sensor_uuid, Boolean ignoreforstats, Double raw_calculated, Boolean hide_slope, String noise, ByteString unknownFields) {
super(ADAPTER, unknownFields);
this.timestamp = timestamp;
this.time_since_sensor_started = time_since_sensor_started;
this.raw_data = raw_data;
this.filtered_data = filtered_data;
this.age_adjusted_raw_value = age_adjusted_raw_value;
this.calibration_flag = calibration_flag;
this.calculated_value = calculated_value;
this.filtered_calculated_value = filtered_calculated_value;
this.calculated_value_slope = calculated_value_slope;
this.a = a;
this.b = b;
this.c = c;
this.ra = ra;
this.rb = rb;
this.rc = rc;
this.uuid = uuid;
this.calibration_uuid = calibration_uuid;
this.sensor_uuid = sensor_uuid;
this.ignoreforstats = ignoreforstats;
this.raw_calculated = raw_calculated;
this.hide_slope = hide_slope;
this.noise = noise;
}
示例4: ReviewInput
import java.lang.Long; //导入依赖的package包/类
ReviewInput(long stars, Input<Long> nullableIntFieldWithDefaultValue, Input<String> commentary,
@Nonnull ColorInput favoriteColor, Input<Episode> enumWithDefaultValue,
Input<Episode> nullableEnum, Input<List<Object>> listOfCustomScalar,
Input<Object> customScalar, Input<List<Episode>> listOfEnums, Input<List<Long>> listOfInt,
Input<List<String>> listOfString, Input<Boolean> booleanWithDefaultValue) {
this.stars = stars;
this.nullableIntFieldWithDefaultValue = nullableIntFieldWithDefaultValue;
this.commentary = commentary;
this.favoriteColor = favoriteColor;
this.enumWithDefaultValue = enumWithDefaultValue;
this.nullableEnum = nullableEnum;
this.listOfCustomScalar = listOfCustomScalar;
this.customScalar = customScalar;
this.listOfEnums = listOfEnums;
this.listOfInt = listOfInt;
this.listOfString = listOfString;
this.booleanWithDefaultValue = booleanWithDefaultValue;
}
示例5: ReviewInput
import java.lang.Long; //导入依赖的package包/类
ReviewInput(long stars, Input<Long> nullableIntFieldWithDefaultValue, Input<String> commentary,
@Nonnull ColorInput favoriteColor, Input<Episode> enumWithDefaultValue,
Input<Episode> nullableEnum, Input<List<Date>> listOfCustomScalar, Input<Date> customScalar,
Input<List<Episode>> listOfEnums, Input<List<Long>> listOfInt,
Input<List<String>> listOfString, Input<Boolean> booleanWithDefaultValue) {
this.stars = stars;
this.nullableIntFieldWithDefaultValue = nullableIntFieldWithDefaultValue;
this.commentary = commentary;
this.favoriteColor = favoriteColor;
this.enumWithDefaultValue = enumWithDefaultValue;
this.nullableEnum = nullableEnum;
this.listOfCustomScalar = listOfCustomScalar;
this.customScalar = customScalar;
this.listOfEnums = listOfEnums;
this.listOfInt = listOfInt;
this.listOfString = listOfString;
this.booleanWithDefaultValue = booleanWithDefaultValue;
}
示例6: Data
import java.lang.Long; //导入依赖的package包/类
public Data(@Nullable String graphQlString, @Nullable String graphQlIdNullable,
@Nonnull String graphQlIdNonNullable, @Nullable Long graphQlIntNullable,
long graphQlIntNonNullable, @Nullable Double graphQlFloatNullable,
double graphQlFloatNonNullable, @Nullable Boolean graphQlBooleanNullable,
boolean graphQlBooleanNonNullable, @Nullable List<Long> graphQlListOfInt,
@Nullable List<GraphQlListOfObject> graphQlListOfObjects) {
this.graphQlString = Optional.fromNullable(graphQlString);
this.graphQlIdNullable = Optional.fromNullable(graphQlIdNullable);
this.graphQlIdNonNullable = Utils.checkNotNull(graphQlIdNonNullable, "graphQlIdNonNullable == null");
this.graphQlIntNullable = Optional.fromNullable(graphQlIntNullable);
this.graphQlIntNonNullable = graphQlIntNonNullable;
this.graphQlFloatNullable = Optional.fromNullable(graphQlFloatNullable);
this.graphQlFloatNonNullable = graphQlFloatNonNullable;
this.graphQlBooleanNullable = Optional.fromNullable(graphQlBooleanNullable);
this.graphQlBooleanNonNullable = graphQlBooleanNonNullable;
this.graphQlListOfInt = Optional.fromNullable(graphQlListOfInt);
this.graphQlListOfObjects = Optional.fromNullable(graphQlListOfObjects);
}
示例7: onTransact
import java.lang.Long; //导入依赖的package包/类
@Override
protected boolean onTransact(int code, Parcel data, Parcel reply, int flags) throws RemoteException {
switch(code) {
case TRANSACT_methodWithLongParameter: {
data.enforceInterface(this.getInterfaceDescriptor());
final Long longParameterTmp;
if (data.readByte() == -1) {
longParameterTmp = null;
} else {
longParameterTmp = data.readLong();
}
delegate.methodWithLongParameter(longParameterTmp);
reply.writeNoException();
return true;
}
}
return super.onTransact(code, data, reply, flags);
}
示例8: methodWithLongParameter
import java.lang.Long; //导入依赖的package包/类
@Override
public void methodWithLongParameter(Long longParameter) throws RemoteException {
Parcel data = Parcel.obtain();
Parcel reply = Parcel.obtain();
try {
data.writeInterfaceToken(LongTest$$AidlServerImpl.DESCRIPTOR);
if (longParameter == null) {
data.writeByte((byte) -1);
} else {
data.writeByte((byte) 0);
data.writeLong(longParameter);
}
delegate.transact(LongTest$$AidlServerImpl.TRANSACT_methodWithLongParameter, data, reply, 0);
reply.readException();
} finally {
data.recycle();
reply.recycle();
}
}
示例9: findById
import java.lang.Long; //导入依赖的package包/类
/**
* Performs a query for a trinityprocessortest.full.MyEntity with given id.
* If no such instance is found, null is returned.
*
* @param id The id of the instance to find.
* @return The trinityprocessortest.full.MyEntity with given id, or null if it doesn't exist. */
@Override
public MyEntity findById(final Long id) {
if (id == null) {
return null;
}
MyEntity result = null;
Cursor cursor = mDatabase.query("entities", null, "id=?", new String[] {String.valueOf(id)}, null, null, null, "1");
try {
if (cursor.moveToFirst()) {
result = read(cursor);
}
} finally{
cursor.close();
}
return result;
}
示例10: changeKeyComboCode
import java.lang.Long; //导入依赖的package包/类
@Test
public void changeKeyComboCode() {
String keyNavigateNext = mContext.getString(R.string.keycombo_shortcut_navigate_next);
// Check default key combo code.
long defaultKeyComboCode = mDefaultKeyComboModel.getDefaultKeyComboCode(keyNavigateNext);
assertEquals(defaultKeyComboCode,
mDefaultKeyComboModel.getKeyComboCodeForKey(keyNavigateNext));
// Change key combo code.
long newKeyComboCode = KeyComboManager.getKeyComboCode(
KeyComboModel.NO_MODIFIER, KeyEvent.KEYCODE_X);
mDefaultKeyComboModel.saveKeyComboCode(keyNavigateNext, newKeyComboCode);
Map<String, Long> keyComboCodeMap = mDefaultKeyComboModel.getKeyComboCodeMap();
assertEquals(newKeyComboCode, keyComboCodeMap.get(keyNavigateNext).longValue());
assertEquals(newKeyComboCode, mDefaultKeyComboModel.getKeyComboCodeForKey(keyNavigateNext));
assertEquals(newKeyComboCode, mPref.getLong(PREF_KEY_PREFIX + keyNavigateNext, -1));
// Create new DefaultKeyComboModel model and confirm it's loaded.
DefaultKeyComboModel newDefaultKeyComboModel = new DefaultKeyComboModel(mContext);
assertEquals(newKeyComboCode,
newDefaultKeyComboModel.getKeyComboCodeForKey(keyNavigateNext));
}
示例11: clearKeyComboCode
import java.lang.Long; //导入依赖的package包/类
@Test
public void clearKeyComboCode() {
String keyNavigateNext = mContext.getString(R.string.keycombo_shortcut_navigate_next);
// Check default key combo code.
long defaultKeyComboCode = mDefaultKeyComboModel.getDefaultKeyComboCode(keyNavigateNext);
assertEquals(defaultKeyComboCode,
mDefaultKeyComboModel.getKeyComboCodeForKey(keyNavigateNext));
// Clear key combo code.
mDefaultKeyComboModel.clearKeyComboCode(keyNavigateNext);
Map<String, Long> keyComboCodeMap = mDefaultKeyComboModel.getKeyComboCodeMap();
assertEquals(KeyComboModel.KEY_COMBO_CODE_UNASSIGNED,
keyComboCodeMap.get(keyNavigateNext).longValue());
assertEquals(KeyComboModel.KEY_COMBO_CODE_UNASSIGNED,
mDefaultKeyComboModel.getKeyComboCodeForKey(keyNavigateNext));
assertEquals(KeyComboModel.KEY_COMBO_CODE_UNASSIGNED,
mPref.getLong(PREF_KEY_PREFIX + keyNavigateNext, -1));
// Create new DefaultKeyComboModel and confirm it's loaded.
DefaultKeyComboModel newDefaultKeyComboModel = new DefaultKeyComboModel(mContext);
assertEquals(KeyComboModel.KEY_COMBO_CODE_UNASSIGNED,
newDefaultKeyComboModel.getKeyComboCodeForKey(keyNavigateNext));
}
示例12: testFloatNarrowing
import java.lang.Long; //导入依赖的package包/类
public void testFloatNarrowing() {
float fmin = Float.NEGATIVE_INFINITY;
float fmax = Float.POSITIVE_INFINITY;
assertEquals("fmin as long failed", Long.MIN_VALUE, (long) fmin);
assertEquals("fmax as long failed", Long.MAX_VALUE, (long) fmax);
assertEquals("fmin as int failed", Integer.MIN_VALUE, (int) fmin);
assertEquals("fmax as int failed", Integer.MAX_VALUE, (int) fmax);
assertEquals("fmin as char failed", Character.MIN_VALUE, (char) fmin);
assertEquals("fmax as char failed", Character.MAX_VALUE, (char) fmax);
// Surprising values for shorts and bytes, but that's what's specified.
assertEquals("fmin as short failed", 0, (short) fmin);
assertEquals("fmax as short failed", -1, (short) fmax);
assertEquals("fmin as byte failed", 0, (byte) fmin);
assertEquals("fmax as byte failed", -1, (byte) fmax);
}
示例13: updateGM
import java.lang.Long; //导入依赖的package包/类
void updateGM( long value, String name )
{
mApp.mDData.updateGMName( mCIDid, mApp.mCID, name );
String id = Long.toString(mCIDid);
// CalibCBlock blk = mApp.mDData.selectGM( mCIDid, mApp.mCID );
mSaveCBlock.setGroup( value );
// if ( mApp.mListRefresh ) {
// mDataAdapter.notifyDataSetChanged();
// } else {
mSaveTextView.setText( id + " <" + name + "> " + mSaveData );
mSaveTextView.setTextColor( mSaveCBlock.color() );
// mSaveTextView.invalidate();
// updateDisplay( ); // FIXME
// }
}
示例14: equals
import java.lang.Long; //导入依赖的package包/类
@Override
public boolean equals(Object obj) {
if (obj instanceof TimeDuration) {
return milisecond == ((TimeDuration) obj).getMilisecond();
}
if (obj instanceof Integer) {
return milisecond == ((Integer) obj).intValue();
}
if (obj instanceof java.lang.Long) {
return milisecond == ((Long) obj).longValue();
}
if (obj instanceof Int) {
return milisecond == ((Int) obj).getValue();
}
return false;
}
示例15: HarvestWatcher
import java.lang.Long; //导入依赖的package包/类
public HarvestWatcher(Context _context){
Log.d("HarvestWatcher", "created");
journal = new HarvestJournal(_context);
reporter = new HarvestReporter(_context);
handler = new Handler();
context = _context;
// discard initial values because we can not make any
// assumptions regarding whether or not these values
// were accounted before. Only measure traffic since
// the service started.
HarvestTrafficStats stats = new HarvestTrafficStats();
Long initialRx = stats.getTotalRxBytes();
Long initialTx = stats.getTotalTxBytes();
trafficJournal = new HarvestTrafficJournal(_context, initialRx, initialTx);
}