Java Unsigned Number Create unsignedChar(int val)

Here you can find the source of unsignedChar(int val)

Description

unsigned Char

License

Apache License

Declaration

public static int unsignedChar(int val) 

Method Source Code

//package com.java2s;
/**/*from www .ja v a2 s .c  o  m*/
 * Copyright 2013 Dan Oprescu
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *     http://www.apache.org/licenses/LICENSE-2.0
 *     
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

public class Main {
    public static int unsignedChar(int val) {
        return Math.min(Math.max(val, 0), 255);
    }

    public static int unsignedChar(double val) {
        return unsignedChar((int) val);
    }
}

Related

  1. unsignedByteToLong(final byte b)
  2. unsignedByteToString(int i)
  3. unsignedByteValue(byte[] data, int offset)
  4. unsignedByteValue(final byte input)
  5. unsignedChar(char c)
  6. unsignedCharToInt(byte[] b)
  7. unsignedCompare(long left, long right)
  8. unsignedConstraintValue(double v, double min, double max)
  9. unsignedDiv(long l1, long l2)