Example usage for com.amazonaws.services.s3.model Tier toString

List of usage examples for com.amazonaws.services.s3.model Tier toString

Introduction

In this page you can find the example usage for com.amazonaws.services.s3.model Tier toString.

Prototype

@Override
    public String toString() 

Source Link

Usage

From source file:nl.nn.adapterframework.filesystem.AmazonS3FileSystem.java

License:Apache License

public static List<String> getTiers() {
    List<String> tiers = new ArrayList<String>(Tier.values().length);
    for (Tier tier : Tier.values())
        tiers.add(tier.toString());

    return tiers;
}