Package org.primefaces.component.calendar

Source Code of org.primefaces.component.calendar.CalendarUtils

/*
* Copyright 2010 Prime Technology.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.primefaces.component.calendar;

import java.text.SimpleDateFormat;
import java.util.Date;

import javax.faces.FacesException;
import javax.faces.context.FacesContext;

/**
* Utility class for calendar component
*/
public class CalendarUtils {

  public static String getValueAsString(FacesContext facesContext, Calendar calendar) {
    Object submittedValue = calendar.getSubmittedValue();
    if(submittedValue != null) {
      return submittedValue.toString();
    }
   
    Object value = calendar.getValue();
    if(value == null) {
      return null;
    } else {
      //first ask the converter
      if(calendar.getConverter() != null) {
        return calendar.getConverter().getAsString(facesContext, calendar, value);
      }
      //Use built-in converter
      else {
        SimpleDateFormat dateFormat = new SimpleDateFormat(calendar.getPattern(), calendar.calculateLocale(facesContext));
        dateFormat.setTimeZone(calendar.calculateTimeZone());
       
        return dateFormat.format(value);
      }
    }
  }
 
  public static String getDateAsString(Calendar calendar, Object date) {   
    if(date == null) {
      return null;
    }
   
    if(date instanceof String){
      return (String) date;
    } else if(date instanceof Date) {
      SimpleDateFormat dateFormat = new SimpleDateFormat(calendar.getPattern(), calendar.calculateLocale(FacesContext.getCurrentInstance()));
      dateFormat.setTimeZone(calendar.calculateTimeZone());
     
      return dateFormat.format((Date) date);
    } else {
      throw new FacesException("Date could be either String or java.util.Date");
    }
  }
   
  /**
   * Converts a java date pattern to a jquery date pattern
   *
   * @param pattern Pattern to be converted
   * @return converted pattern
   */
  public static String convertPattern(String pattern) {
    if(pattern == null)
      return null;
    else {
      //year
      pattern = pattern.replaceAll("yy", "y");
     
      //month
      if(pattern.indexOf("MMM") != -1)
        pattern = pattern.replaceAll("MMM", "M");
      else
        pattern = pattern.replaceAll("M", "m");
     
      //day of week
      pattern = pattern.replaceAll("EEE", "D");
     
      return pattern;
    }
  }
}
TOP

Related Classes of org.primefaces.component.calendar.CalendarUtils

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.