blob: 70e870d05c1f01b4d90102dc26414f608dd6d787 [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
package com.android.org.bouncycastle.util;
/**
* Utility methods for ints.
* @hide This class is not part of the Android public SDK API
*/
public class Integers
{
public static int rotateLeft(int i, int distance)
{
return Integer.rotateLeft(i, distance);
}
public static int rotateRight(int i, int distance)
{
return Integer.rotateRight(i, distance);
}
public static Integer valueOf(int value)
{
return Integer.valueOf(value);
}
}