Java Code Examples for org.apache.hadoop.hdfs.protocol.proto.HdfsProtos#ChecksumTypeProto
The following examples show how to use
org.apache.hadoop.hdfs.protocol.proto.HdfsProtos#ChecksumTypeProto .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PBHelper.java From hadoop with Apache License 2.0 | 4 votes |
public static DataChecksum.Type convert(HdfsProtos.ChecksumTypeProto type) { return DataChecksum.Type.valueOf(type.getNumber()); }
Example 2
Source File: PBHelper.java From hadoop with Apache License 2.0 | 4 votes |
public static HdfsProtos.ChecksumTypeProto convert(DataChecksum.Type type) { return HdfsProtos.ChecksumTypeProto.valueOf(type.id); }
Example 3
Source File: PBHelper.java From big-c with Apache License 2.0 | 4 votes |
public static DataChecksum.Type convert(HdfsProtos.ChecksumTypeProto type) { return DataChecksum.Type.valueOf(type.getNumber()); }
Example 4
Source File: PBHelper.java From big-c with Apache License 2.0 | 4 votes |
public static HdfsProtos.ChecksumTypeProto convert(DataChecksum.Type type) { return HdfsProtos.ChecksumTypeProto.valueOf(type.id); }