// 
// Decompiled by Procyon v0.6.0
// 

package org.fusesource.jansi;

public enum AnsiMode
{
    Strip("Strip all ansi sequences"), 
    Default("Print ansi sequences if the stream is a terminal"), 
    Force("Always print ansi sequences, even if the stream is redirected");
    
    private final String description;
    
    private AnsiMode(final String description) {
        this.description = description;
    }
    
    String getDescription() {
        return this.description;
    }
}
