Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
package routines;
import java.util.Calendar;
import java.util.Date;
/*
* user specification: the function's comment should contain keys as follows: 1. write about the function's comment.but
* it must be before the "{talendTypes}" key.
*
* 2. {talendTypes} 's value must be talend Type, it is required . its value should be one of: String, char | Character,
* long | Long, int | Integer, boolean | Boolean, byte | Byte, Date, double | Double, float | Float, Object, short |
* Short
*
* 3. {Category} define a category for the Function. it is required. its value is user-defined .
*
* 4. {param} 's format is: {param} <type> <name>
*
* <type> 's value should be one of: string, int, list, double, object, boolean, long, char, date. <name>'s value is the
* Function's parameter name. the {param} is optional. so if you the Function without the parameters. the {param} don't
* added. you can have many parameters for the Function.
*
* 5. {example} gives a example for the Function. it is optional.
*/
public class PreviousDate {
/**
* helloExample: not return value, only print "hello" + message.
*
*
* {talendTypes} String
*
* {Category} User Defined
*
* {param} string("world") input: The string need to be printed.
*
* {example} helloExemple("world") # hello world !.
*/
public static void helloExample(String message) {
if (message == null) {
message = "World"; //$NON-NLS-1$
}
System.out.println("Hello " + message + " !"); //$NON-NLS-1$ //$NON-NLS-2$
}
private static Calendar cal = Calendar.getInstance();
/**
* getDateMinusADay: return the dateToChange substract ONE DAY (consistancy maintain for FEBRUARY or YEAR Change etc...)
* {talendTypes} Date
* {Category} User Defined
* {param} Date("dateToChange") dateToTest from the source
* {example} getDateMinusADay(dateToChange)
*/
public static Date getDateMinusADay(Date dateToChange) {
cal.setTime(dateToChange);
cal.add(cal.DATE, -1);
return cal.getTime();
}
}