Here you can find the source of toByte(final String value)
Parameter | Description |
---|---|
value | a parameter |
public static Byte toByte(final String value)
//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); } }