Example usage for com.amazonaws.services.cloudfront.model Distribution.Method toString

List of usage examples for com.amazonaws.services.cloudfront.model Distribution.Method toString

Introduction

In this page you can find the example usage for com.amazonaws.services.cloudfront.model Distribution.Method toString.

Prototype

@Override
public String toString() 

Source Link

Document

Returns a string representation of this object.

Usage

From source file:ch.cyberduck.core.cloudfront.WebsiteCloudFrontDistributionConfiguration.java

License:Open Source License

@Override
public String getName(final Distribution.Method method) {
    if (method.equals(Distribution.WEBSITE)) {
        return method.toString();
    }/*from   ww  w. jav a 2  s  .c  o m*/
    return super.getName(method);
}