com.hfg.xml.msofficexml.docx.wordprocessingml.WmlTabStyle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com_hfg Show documentation
Show all versions of com_hfg Show documentation
com.hfg xml, html, svg, and bioinformatics utility library
package com.hfg.xml.msofficexml.docx.wordprocessingml;
import com.hfg.util.collection.OrderedMap;
import java.util.Collection;
import java.util.Map;
//------------------------------------------------------------------------------
/**
Allowed values for the tab 'val' attribute.
@author J. Alex Taylor, hairyfatguy.com
*/
//------------------------------------------------------------------------------
// com.hfg XML/HTML Coding Library
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// J. Alex Taylor, President, Founder, CEO, COO, CFO, OOPS hairyfatguy.com
// [email protected]
//------------------------------------------------------------------------------
public class WmlTabStyle
{
private static Map sValues = new OrderedMap<>(6);
/**
A bar tab does not result in a tab stop in the parent paragraph but instead a vertical bar is drawn at the location.
*/
public static final WmlTabStyle BAR = new WmlTabStyle("bar");
/**
All text folowing and preceding the next tab shall be centered around the tab.
*/
public static final WmlTabStyle CENTER = new WmlTabStyle("center");
/**
The current tab stop is cleared and shall be removed.
*/
public static final WmlTabStyle CLEAR = new WmlTabStyle("clear");
/**
All following text is aligned around the first decimal character in the following text.
*/
public static final WmlTabStyle DECIMAL = new WmlTabStyle("decimal");
/**
All following and preceding text is aligned against the trailing edge.
*/
public static final WmlTabStyle END = new WmlTabStyle("end");
/**
All following and preceding text is aligned against the leading edge.
*/
public static final WmlTabStyle START = new WmlTabStyle("start");
private String mString;
private WmlTabStyle(String inString)
{
mString = inString;
sValues.put(inString, this);
}
//##########################################################################
// PUBLIC METHODS
//##########################################################################
//---------------------------------------------------------------------------
public static Collection values()
{
return sValues.values();
}
//---------------------------------------------------------------------------
public static WmlTabStyle valueOf(String inString)
{
return sValues.get(inString);
}
//---------------------------------------------------------------------------
public String name()
{
return mString;
}
//---------------------------------------------------------------------------
@Override
public String toString()
{
return name();
}
}