List of usage examples for java.text Format subclass-usage
From source file org.sipfoundry.sipxconfig.components.NewEnumFormat.java
/** * Tapestry enabled formatter for new java Enums */ public class NewEnumFormat<E extends Enum<E>> extends Format { private Messages m_messages;
From source file org.sipfoundry.sipxconfig.components.EnumFormat.java
public class EnumFormat extends Format { private Messages m_messages; private String m_prefixSeparator = "."; private String m_prefix = StringUtils.EMPTY;
From source file er.extensions.formatters.ERXSimpleHTMLFormatter.java
/** * This is a simple class for converting ASCII strings to HTML and vice versa. * In the current implementation, all this class does is convert newlines to HTML breaks and * tab characters to HTML <spacer> tags. */ public class ERXSimpleHTMLFormatter extends java.text.Format {
From source file org.sipfoundry.sipxconfig.components.MillisDurationFormat.java
public class MillisDurationFormat extends Format { public static final int DAYS = 0; public static final int HOURS = 1; public static final int MINUTES = 2; public static final int SECONDS = 3;
From source file net.jofm.format.NumberFormat.java
/** * @author Chunyun Zhao * @since 1.0 */ public class NumberFormat extends Format { public NumberFormat(Pad pad, char padWith, int length, String format) {
From source file org.apache.phoenix.util.VarBinaryFormatter.java
/**
* A formatter that formats a byte array to a hexadecimal string
* (with each byte converted to a 2-digit hex sequence)
*
* @author snakhoda-sfdc
*/
From source file org.osaf.cosmo.eim.schema.text.DurationFormat.java
/**
* Parses and formats EIM duration text values.
* <p>
* EIM uses the iCalendar DURATION value type as per section 4.3.6 of
* RFC 2445.
* <p>
From source file org.getobjects.jmi.JMIBatchPositionFormat.java
public class JMIBatchPositionFormat extends Format { private static final long serialVersionUID = 1L; protected static final Log log = LogFactory.getLog("JMI"); /* formatting */
From source file cpcc.commons.services.SensorDescriptionListFormat.java
/** * Sensor List Format */ public class SensorDescriptionListFormat extends Format { private static final long serialVersionUID = -9169715362992900557L;
From source file com.anrisoftware.globalpom.format.enums.EnumFormat.java
/**
* Formatter for an enumeration.
*
* <pre>
* static enum TestEnum {
* FOO, BAR;