java.lang.Integer.rotateLeft() java.lang.Integer.reverseBytes() java.lang.Integer.rotateRight() java.lang.Integer.rotateLeft() package com.codingdict; import java.lang.*; public class IntegerDemo { public static void main(String[] args) { int n = 2; // returns the value obtained by rotating left for(int i = 0; i < 4; i++) { n = Integer.rotateLeft(n, 4); System.out.println(n); } } } java.lang.Integer.reverseBytes() java.lang.Integer.rotateRight()