List of usage examples for org.apache.hadoop.fs XAttrCodec decodeValue
public static byte[] decodeValue(String value) throws IOException
From source file:com.bigstep.datalake.JsonUtil.java
License:Apache License
private static byte[] decodeXAttrValue(String value) throws IOException { if (value != null) { return XAttrCodec.decodeValue(value); } else {/* ww w . j a va 2 s . c o m*/ return new byte[0]; } }