/*
 * JBoss, Home of Professional Open Source
 * Copyright 2009, Red Hat Middleware LLC, and individual contributors
 * by the @authors tag. See the copyright.txt in the distribution for a
 * full listing of individual contributors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * http://www.apache.org/licenses/LICENSE-2.0
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.jboss.shrinkwrap.api.formatter;

import org.jboss.shrinkwrap.api.Archive;

Available pre-configured Formatter instances used in constructing a human-readable form for a specified Archive.
Author:ALR
Version:$Revision: $
/** * Available pre-configured {@link Formatter} instances used in constructing a human-readable form for a specified * {@link Archive}. * * @author <a href="mailto:andrew.rubinger@jboss.org">ALR</a> * @version $Revision: $ */
public enum Formatters implements Formatter { // -------------------------------------------------------------------------------------|| // Types ------------------------------------------------------------------------------|| // -------------------------------------------------------------------------------------||
Formatter implementation to provide an "ls -l"-esque output for an Archive, listing all internal contents in sorted order.
/** * {@link Formatter} implementation to provide an "ls -l"-esque output for an {@link Archive}, listing all internal * contents in sorted order. */
VERBOSE(VerboseFormatter.INSTANCE),
Formatter implementation to provide a simple, one-line description of an Archive, including its name.
/** * {@link Formatter} implementation to provide a simple, one-line description of an {@link Archive}, including its * name. */
SIMPLE(SimpleFormatter.INSTANCE); // -------------------------------------------------------------------------------------|| // Internal Members -------------------------------------------------------------------|| // -------------------------------------------------------------------------------------||
Internal formatter type, used as a delegate to make Formatters itself a Formatter
/** * Internal formatter type, used as a delegate to make {@link Formatters} itself a {@link Formatter} */
private final Formatter formatter; // -------------------------------------------------------------------------------------|| // Constructor ------------------------------------------------------------------------|| // -------------------------------------------------------------------------------------||
Constructs a new Formatters type using the specfied underlying Formatter
/** * Constructs a new {@link Formatters} type using the specfied underlying {@link Formatter} */
Formatters(final Formatter formatter) { this.formatter = formatter; } // -------------------------------------------------------------------------------------|| // Required Implementations -----------------------------------------------------------|| // -------------------------------------------------------------------------------------||
{@inheritDoc}
See Also:
/** * {@inheritDoc} * * @see org.jboss.shrinkwrap.api.formatter.Formatter#format(org.jboss.shrinkwrap.api.Archive) */
@Override public String format(final Archive<?> archive) throws IllegalArgumentException { return formatter.format(archive); } }