Function<org.jclouds.blobstore.options.GetOptions, GetOptions> {
public GetOptions apply(org.jclouds.blobstore.options.GetOptions from) {
GetOptions httpOptions = new GetOptions();
if (from != null) {
if (from.getIfMatch() != null) {
httpOptions.ifETagMatches(from.getIfMatch());
}
if (from.getIfModifiedSince() != null) {
httpOptions.ifModifiedSince(from.getIfModifiedSince());
}
if (from.getIfNoneMatch() != null) {