Java Byte Create toByte(final String value)

Here you can find the source of toByte(final String value)

Description

create Byte from str.

License

Apache License

Parameter

Parameter Description
value a parameter

Declaration

public static Byte toByte(final String value) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    /**//from  ww w  . ja  v a 2 s  .c o  m
     * create Byte from str.
     * @param value
     * @return
     */
    public static Byte toByte(final String value) {
        return Byte.parseByte(value);
    }
}

Related

  1. toByte(double x, double gamma)
  2. toByte(final byte[] buffer, final int offset)
  3. toByte(final int highNibble, final int lowNibble)
  4. toByte(final String bitString)
  5. toByte(final String strHexa)
  6. toByte(float[][] in, byte[] out, float min, float max)
  7. toByte(int i)
  8. toByte(int n)
  9. toByte(int rgb)