MCPcopy Index your code
hub / github.com/processing/processing / unhex

Method unhex

core/src/processing/core/PApplet.java:10264–10267  ·  view source on GitHub ↗

( begin auto-generated from unhex.xml ) Converts a String representation of a hexadecimal number to its equivalent integer value. ( end auto-generated ) @webref data:conversion @param value String to convert to an integer @see PApplet#hex(int, int) @see PApplet#binary(byte) @see PApplet#unbinary(

(String value)

Source from the content-addressed store, hash-verified

10262 * @see PApplet#unbinary(String)
10263 */
10264 static final public int unhex(String value) {
10265 // has to parse as a Long so that it'll work for numbers bigger than 2^31
10266 return (int) (Long.parseLong(value, 16));
10267 }
10268
10269 //
10270

Callers 6

PShapeSVGMethod · 0.95
CharacterSelectorClass · 0.95
removeUpdateMethod · 0.95
insertUpdateMethod · 0.95
actionPerformedMethod · 0.95
preprocessMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected