SimpleTimeZone.setStartRule(int startMonth, int startDay, int startTime) has the following syntax.
public void setStartRule(int startMonth, int startDay, int startTime)
In the following code shows how to use SimpleTimeZone.setStartRule(int startMonth, int startDay, int startTime) method.
// ww w .j a va 2 s .co m import java.util.Calendar; import java.util.SimpleTimeZone; public class Main { public static void main( String args[] ){ SimpleTimeZone stobj = new SimpleTimeZone(820,"GMT"); // checking initial value System.out.println("Initial value: " + stobj); // setting start rule stobj.setStartRule( Calendar.MAY, 2, 3600000); // checking the new value System.out.println("Final value : " + stobj); } }
The code above generates the following result.