blob: f41ee5f385c6f1a69d1c19e7118e4350fe29bdbe [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
package com.android.internal.org.bouncycastle.util;
/**
* @hide This class is not part of the Android public SDK API
*/
public class Longs
{
public static long reverse(long i)
{
return Long.reverse(i);
}
public static long reverseBytes(long i)
{
return Long.reverseBytes(i);
}
public static long rotateLeft(long i, int distance)
{
return Long.rotateLeft(i, distance);
}
public static long rotateRight(long i, int distance)
{
return Long.rotateRight(i, distance);
}
public static Long valueOf(long value)
{
return Long.valueOf(value);
}
}