Here you can find the source of toByte(int n)
Parameter | Description |
---|---|
n | a parameter |
private static byte toByte(int n)
//package com.java2s; public class Main { /**/*from www . ja v a2 s . co m*/ * toByte * @param n * @return */ private static byte toByte(int n) { return (byte) ((n > 127) ? (n - 256) : n); } }