com.obdobion.argument.directive.DateTimeDirective Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of argument Show documentation
Show all versions of argument Show documentation
A command line parser for Java
package com.obdobion.argument.directive;
import java.text.SimpleDateFormat;
/**
* @author Chris DeGreef
*
*/
public class DateTimeDirective extends DateDirective
{
public DateTimeDirective(String _data)
{
super(_data);
}
@Override
protected SimpleDateFormat replaceTokenDateFormat ()
{
return new SimpleDateFormat("yyyy/MM/dd@HH:mm:ss.SSS");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy