All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.unix4j.unix.wc.WcOption Maven / Gradle / Ivy

There is a newer version: 0.6
Show newest version
package org.unix4j.unix.wc;

import java.util.Collections;
import java.util.EnumSet;
import java.util.Iterator;

import org.unix4j.option.Option;
import org.unix4j.unix.Wc;

/**
 * Options for the {@link Wc wc} command.
 * 

* For most applications, it may be more convenient to use {@link Wc#Options} * instead of the option constants defined here. *

*

* * * *
{@code -l}  {@code --lines} Executes a count of lines and writes this count to the output.
{@code -w}  {@code --words} Executes a count of words and writes this count to the output. A word is a non-zero-length string of characters delimited by white space as defined by {@link Character#isWhitespace(char)}.
{@code -m}  {@code --chars} Executes a count of chars and writes this count to the output.
*/ public enum WcOption implements Option, WcOptions { /** * Option {@code --lines}, {@code -l}: * Executes a count of lines and writes this count to the output. */ lines('l'), /** * Option {@code --words}, {@code -w}: * Executes a count of words and writes this count to the output. A word is a non-zero-length string of characters delimited by white space as defined by {@link Character#isWhitespace(char)}. */ words('w'), /** * Option {@code --chars}, {@code -m}: * Executes a count of chars and writes this count to the output. */ chars('m'); private final char acronym; private WcOption(char acronym) { this.acronym = acronym; } @Override public Class optionType() { return WcOption.class; } /** * Returns the option with the given {@code acronym}, or {@code null} if no * such option is found. * * @param acronym the option {@link #acronym() acronym} * @return the option with the given {@code acronym} or {@code null} if it * is not found */ public static WcOption findByAcronym(char acronym) { for (final WcOption opt : values()) { if (opt.acronym() == acronym) return opt; } return null; } @Override public char acronym() { return acronym; } @Override public boolean isSet(WcOption option) { return equals(option); } /** * Returns a new set with {@code this} active option. * * @return a new set containing this option */ @Override public EnumSet asSet() { return EnumSet.of(this); } /** * Returns an immutable iterator returning o single element: {@code this} * option. * * @return an immutable iterator with {@code this} active option. */ @Override public Iterator iterator() { return Collections.singleton(this).iterator(); } /** * Returns 1 as this is a set with a single element: {@code this} option * * @return one */ @Override public int size() { return 1; } /** * Returns true if the {@link Option#acronym() acronym} should be used for * the specified {@code option} in string representations. *

* This method returns always true for all options. * * @param option * the option of interest * @return always true indicating that option acronyms should be used in * string representations for all options */ @Override public boolean useAcronymFor(WcOption option) { return true; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy