java.text.SimpleDateFormat.validatePattern()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(10.5k)|赞(0)|评价(0)|浏览(99)

本文整理了Java中java.text.SimpleDateFormat.validatePattern()方法的一些代码示例,展示了SimpleDateFormat.validatePattern()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。SimpleDateFormat.validatePattern()方法的具体详情如下:
包路径:java.text.SimpleDateFormat
类名称:SimpleDateFormat
方法名:validatePattern

SimpleDateFormat.validatePattern介绍

[英]Validates the pattern.
[中]验证模式。

代码示例

代码示例来源:origin: robovm/robovm

/**
 * Changes the pattern of this simple date format to the specified pattern
 * which uses non-localized pattern characters.
 *
 * @param template
 *            the non-localized pattern.
 * @throws NullPointerException
 *                if the pattern is {@code null}.
 * @throws IllegalArgumentException
 *                if the pattern is invalid.
 */
public void applyPattern(String template) {
  validatePattern(template);
  pattern = template;
}

代码示例来源:origin: robovm/robovm

/**
 * Constructs a new {@code SimpleDateFormat} using the specified
 * non-localized pattern and the {@code DateFormatSymbols} and {@code
 * Calendar} for the specified locale.
 *
 * @param template
 *            the pattern.
 * @param locale
 *            the locale.
 * @throws NullPointerException
 *            if the pattern is {@code null}.
 * @throws IllegalArgumentException
 *            if the pattern is invalid.
 */
public SimpleDateFormat(String template, Locale locale) {
  this(locale);
  validatePattern(template);
  pattern = template;
  formatData = new DateFormatSymbols(locale);
}

代码示例来源:origin: robovm/robovm

/**
 * Constructs a new {@code SimpleDateFormat} using the specified
 * non-localized pattern and {@code DateFormatSymbols} and the {@code
 * Calendar} for the user's default locale.
 * See "<a href="../util/Locale.html#default_locale">Be wary of the default locale</a>".
 *
 * @param template
 *            the pattern.
 * @param value
 *            the DateFormatSymbols.
 * @throws NullPointerException
 *            if the pattern is {@code null}.
 * @throws IllegalArgumentException
 *            if the pattern is invalid.
 */
public SimpleDateFormat(String template, DateFormatSymbols value) {
  this(Locale.getDefault());
  validatePattern(template);
  pattern = template;
  formatData = (DateFormatSymbols) value.clone();
}

代码示例来源:origin: MobiVM/robovm

/**
 * Changes the pattern of this simple date format to the specified pattern
 * which uses non-localized pattern characters.
 *
 * @param template
 *            the non-localized pattern.
 * @throws NullPointerException
 *                if the pattern is {@code null}.
 * @throws IllegalArgumentException
 *                if the pattern is invalid.
 */
public void applyPattern(String template) {
  validatePattern(template);
  pattern = template;
}

代码示例来源:origin: com.bugvm/bugvm-rt

/**
 * Changes the pattern of this simple date format to the specified pattern
 * which uses non-localized pattern characters.
 *
 * @param template
 *            the non-localized pattern.
 * @throws NullPointerException
 *                if the pattern is {@code null}.
 * @throws IllegalArgumentException
 *                if the pattern is invalid.
 */
public void applyPattern(String template) {
  validatePattern(template);
  pattern = template;
}

代码示例来源:origin: FlexoVM/flexovm

/**
 * Changes the pattern of this simple date format to the specified pattern
 * which uses non-localized pattern characters.
 *
 * @param template
 *            the non-localized pattern.
 * @throws NullPointerException
 *                if the pattern is {@code null}.
 * @throws IllegalArgumentException
 *                if the pattern is invalid.
 */
public void applyPattern(String template) {
  validatePattern(template);
  pattern = template;
}

代码示例来源:origin: com.gluonhq/robovm-rt

/**
 * Changes the pattern of this simple date format to the specified pattern
 * which uses non-localized pattern characters.
 *
 * @param template
 *            the non-localized pattern.
 * @throws NullPointerException
 *                if the pattern is {@code null}.
 * @throws IllegalArgumentException
 *                if the pattern is invalid.
 */
public void applyPattern(String template) {
  validatePattern(template);
  pattern = template;
}

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

/**
 * Changes the pattern of this simple date format to the specified pattern
 * which uses non-localized pattern characters.
 *
 * @param template
 *            the non-localized pattern.
 * @throws NullPointerException
 *                if the pattern is {@code null}.
 * @throws IllegalArgumentException
 *                if the pattern is invalid.
 */
public void applyPattern(String template) {
  validatePattern(template);
  pattern = template;
}

代码示例来源:origin: ibinti/bugvm

/**
 * Changes the pattern of this simple date format to the specified pattern
 * which uses non-localized pattern characters.
 *
 * @param template
 *            the non-localized pattern.
 * @throws NullPointerException
 *                if the pattern is {@code null}.
 * @throws IllegalArgumentException
 *                if the pattern is invalid.
 */
public void applyPattern(String template) {
  validatePattern(template);
  pattern = template;
}

代码示例来源:origin: ibinti/bugvm

/**
 * Constructs a new {@code SimpleDateFormat} using the specified
 * non-localized pattern and the {@code DateFormatSymbols} and {@code
 * Calendar} for the specified locale.
 *
 * @param template
 *            the pattern.
 * @param locale
 *            the locale.
 * @throws NullPointerException
 *            if the pattern is {@code null}.
 * @throws IllegalArgumentException
 *            if the pattern is invalid.
 */
public SimpleDateFormat(String template, Locale locale) {
  this(locale);
  validatePattern(template);
  pattern = template;
  formatData = new DateFormatSymbols(locale);
}

代码示例来源:origin: MobiVM/robovm

/**
 * Constructs a new {@code SimpleDateFormat} using the specified
 * non-localized pattern and the {@code DateFormatSymbols} and {@code
 * Calendar} for the specified locale.
 *
 * @param template
 *            the pattern.
 * @param locale
 *            the locale.
 * @throws NullPointerException
 *            if the pattern is {@code null}.
 * @throws IllegalArgumentException
 *            if the pattern is invalid.
 */
public SimpleDateFormat(String template, Locale locale) {
  this(locale);
  validatePattern(template);
  pattern = template;
  formatData = new DateFormatSymbols(locale);
}

代码示例来源:origin: com.gluonhq/robovm-rt

/**
 * Constructs a new {@code SimpleDateFormat} using the specified
 * non-localized pattern and the {@code DateFormatSymbols} and {@code
 * Calendar} for the specified locale.
 *
 * @param template
 *            the pattern.
 * @param locale
 *            the locale.
 * @throws NullPointerException
 *            if the pattern is {@code null}.
 * @throws IllegalArgumentException
 *            if the pattern is invalid.
 */
public SimpleDateFormat(String template, Locale locale) {
  this(locale);
  validatePattern(template);
  pattern = template;
  formatData = new DateFormatSymbols(locale);
}

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

/**
 * Constructs a new {@code SimpleDateFormat} using the specified
 * non-localized pattern and the {@code DateFormatSymbols} and {@code
 * Calendar} for the specified locale.
 *
 * @param template
 *            the pattern.
 * @param locale
 *            the locale.
 * @throws NullPointerException
 *            if the pattern is {@code null}.
 * @throws IllegalArgumentException
 *            if the pattern is invalid.
 */
public SimpleDateFormat(String template, Locale locale) {
  this(locale);
  validatePattern(template);
  pattern = template;
  formatData = new DateFormatSymbols(locale);
}

代码示例来源:origin: com.bugvm/bugvm-rt

/**
 * Constructs a new {@code SimpleDateFormat} using the specified
 * non-localized pattern and the {@code DateFormatSymbols} and {@code
 * Calendar} for the specified locale.
 *
 * @param template
 *            the pattern.
 * @param locale
 *            the locale.
 * @throws NullPointerException
 *            if the pattern is {@code null}.
 * @throws IllegalArgumentException
 *            if the pattern is invalid.
 */
public SimpleDateFormat(String template, Locale locale) {
  this(locale);
  validatePattern(template);
  pattern = template;
  formatData = new DateFormatSymbols(locale);
}

代码示例来源:origin: ibinti/bugvm

/**
 * Constructs a new {@code SimpleDateFormat} using the specified
 * non-localized pattern and {@code DateFormatSymbols} and the {@code
 * Calendar} for the user's default locale.
 * See "<a href="../util/Locale.html#default_locale">Be wary of the default locale</a>".
 *
 * @param template
 *            the pattern.
 * @param value
 *            the DateFormatSymbols.
 * @throws NullPointerException
 *            if the pattern is {@code null}.
 * @throws IllegalArgumentException
 *            if the pattern is invalid.
 */
public SimpleDateFormat(String template, DateFormatSymbols value) {
  this(Locale.getDefault());
  validatePattern(template);
  pattern = template;
  formatData = (DateFormatSymbols) value.clone();
}

代码示例来源:origin: com.bugvm/bugvm-rt

/**
 * Constructs a new {@code SimpleDateFormat} using the specified
 * non-localized pattern and {@code DateFormatSymbols} and the {@code
 * Calendar} for the user's default locale.
 * See "<a href="../util/Locale.html#default_locale">Be wary of the default locale</a>".
 *
 * @param template
 *            the pattern.
 * @param value
 *            the DateFormatSymbols.
 * @throws NullPointerException
 *            if the pattern is {@code null}.
 * @throws IllegalArgumentException
 *            if the pattern is invalid.
 */
public SimpleDateFormat(String template, DateFormatSymbols value) {
  this(Locale.getDefault());
  validatePattern(template);
  pattern = template;
  formatData = (DateFormatSymbols) value.clone();
}

代码示例来源:origin: MobiVM/robovm

/**
 * Constructs a new {@code SimpleDateFormat} using the specified
 * non-localized pattern and {@code DateFormatSymbols} and the {@code
 * Calendar} for the user's default locale.
 * See "<a href="../util/Locale.html#default_locale">Be wary of the default locale</a>".
 *
 * @param template
 *            the pattern.
 * @param value
 *            the DateFormatSymbols.
 * @throws NullPointerException
 *            if the pattern is {@code null}.
 * @throws IllegalArgumentException
 *            if the pattern is invalid.
 */
public SimpleDateFormat(String template, DateFormatSymbols value) {
  this(Locale.getDefault());
  validatePattern(template);
  pattern = template;
  formatData = (DateFormatSymbols) value.clone();
}

代码示例来源:origin: com.gluonhq/robovm-rt

/**
 * Constructs a new {@code SimpleDateFormat} using the specified
 * non-localized pattern and {@code DateFormatSymbols} and the {@code
 * Calendar} for the user's default locale.
 * See "<a href="../util/Locale.html#default_locale">Be wary of the default locale</a>".
 *
 * @param template
 *            the pattern.
 * @param value
 *            the DateFormatSymbols.
 * @throws NullPointerException
 *            if the pattern is {@code null}.
 * @throws IllegalArgumentException
 *            if the pattern is invalid.
 */
public SimpleDateFormat(String template, DateFormatSymbols value) {
  this(Locale.getDefault());
  validatePattern(template);
  pattern = template;
  formatData = (DateFormatSymbols) value.clone();
}

代码示例来源:origin: com.mobidevelop.robovm/robovm-rt

/**
 * Constructs a new {@code SimpleDateFormat} using the specified
 * non-localized pattern and {@code DateFormatSymbols} and the {@code
 * Calendar} for the user's default locale.
 * See "<a href="../util/Locale.html#default_locale">Be wary of the default locale</a>".
 *
 * @param template
 *            the pattern.
 * @param value
 *            the DateFormatSymbols.
 * @throws NullPointerException
 *            if the pattern is {@code null}.
 * @throws IllegalArgumentException
 *            if the pattern is invalid.
 */
public SimpleDateFormat(String template, DateFormatSymbols value) {
  this(Locale.getDefault());
  validatePattern(template);
  pattern = template;
  formatData = (DateFormatSymbols) value.clone();
}

代码示例来源:origin: FlexoVM/flexovm

/**
 * Constructs a new {@code SimpleDateFormat} using the specified
 * non-localized pattern and {@code DateFormatSymbols} and the {@code
 * Calendar} for the user's default locale.
 * See "<a href="../util/Locale.html#default_locale">Be wary of the default locale</a>".
 *
 * @param template
 *            the pattern.
 * @param value
 *            the DateFormatSymbols.
 * @throws NullPointerException
 *            if the pattern is {@code null}.
 * @throws IllegalArgumentException
 *            if the pattern is invalid.
 */
public SimpleDateFormat(String template, DateFormatSymbols value) {
  this(Locale.getDefault());
  validatePattern(template);
  pattern = template;
  formatData = (DateFormatSymbols) value.clone();
}

相关文章

SimpleDateFormat类方法