Example usage for org.apache.hadoop.io ArrayWritable toStrings

List of usage examples for org.apache.hadoop.io ArrayWritable toStrings

Introduction

In this page you can find the example usage for org.apache.hadoop.io ArrayWritable toStrings.

Prototype

public String[] toStrings() 

Source Link

Usage

From source file:org.schedoscope.export.redis.outputformat.RedisListWritable.java

License:Apache License

private List<String> fromArrayWritable(ArrayWritable value) {

    return Arrays.asList(value.toStrings());
}