Java Hex Calculate toHexChar(int digitValue)

Here you can find the source of toHexChar(int digitValue)

Description

to Hex Char

License

Apache License

Declaration

static private char toHexChar(int digitValue) 

Method Source Code

//package com.java2s;
/*/*from  ww w .  java  2s. c  o m*/
   Copyright 2013, 2016 Nationale-Nederlanden
    
   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 {
    static private char toHexChar(int digitValue) {
        if (digitValue < 10)
            return (char) ('0' + digitValue);
        else
            return (char) ('A' + (digitValue - 10));
    }
}

Related

  1. toHexBytes(byte[] toBeConverted)
  2. toHexChar(byte[] bArray)
  3. toHexChar(char ch, StringBuffer sb)
  4. toHexChar(int b)
  5. toHexChar(int digit)
  6. toHexChar(int digitValue)
  7. toHexChar(int i)
  8. toHexChar(int i)
  9. toHexChar(int i)