org.joda.time.field.UnsupportedDateTimeField.unsupported()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(4.2k)|赞(0)|评价(0)|浏览(108)

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

UnsupportedDateTimeField.unsupported介绍

暂无

代码示例

代码示例来源:origin: joda-time/joda-time

/**
 * Always throws UnsupportedOperationException
 *
 * @throws UnsupportedOperationException
 */
public String getAsText(long instant) {
  throw unsupported();
}

代码示例来源:origin: joda-time/joda-time

/**
 * Always throws UnsupportedOperationException
 *
 * @throws UnsupportedOperationException
 */
public String getAsShortText(ReadablePartial partial, Locale locale) {
  throw unsupported();
}

代码示例来源:origin: joda-time/joda-time

/**
 * Always throws UnsupportedOperationException
 *
 * @throws UnsupportedOperationException
 */
public int[] addWrapPartial(ReadablePartial instant, int fieldIndex, int[] values, int valueToAdd) {
  throw unsupported();
}

代码示例来源:origin: joda-time/joda-time

/**
 * Always throws UnsupportedOperationException
 *
 * @throws UnsupportedOperationException
 */
public long addWrapField(long instant, int value) {
  throw unsupported();
}

代码示例来源:origin: joda-time/joda-time

/**
 * Always throws UnsupportedOperationException
 *
 * @throws UnsupportedOperationException
 */
public int[] set(ReadablePartial instant, int fieldIndex, int[] values, int newValue) {
  throw unsupported();
}

代码示例来源:origin: joda-time/joda-time

/**
 * Always throws UnsupportedOperationException
 *
 * @throws UnsupportedOperationException
 */
public long roundFloor(long instant) {
  throw unsupported();
}

代码示例来源:origin: joda-time/joda-time

/**
 * Always throws UnsupportedOperationException
 *
 * @throws UnsupportedOperationException
 */
public long roundHalfFloor(long instant) {
  throw unsupported();
}

代码示例来源:origin: joda-time/joda-time

/**
 * Always throws UnsupportedOperationException
 *
 * @throws UnsupportedOperationException
 */
public long remainder(long instant) {
  throw unsupported();
}

代码示例来源:origin: joda-time/joda-time

/**
 * Always throws UnsupportedOperationException
 *
 * @throws UnsupportedOperationException
 */
public String getAsShortText(ReadablePartial partial, int fieldValue, Locale locale) {
  throw unsupported();
}

代码示例来源:origin: joda-time/joda-time

/**
 * Always throws UnsupportedOperationException
 *
 * @throws UnsupportedOperationException
 */
public String getAsShortText(int fieldValue, Locale locale) {
  throw unsupported();
}

代码示例来源:origin: joda-time/joda-time

/**
 * Always throws UnsupportedOperationException
 *
 * @throws UnsupportedOperationException
 */
public long set(long instant, int value) {
  throw unsupported();
}

代码示例来源:origin: joda-time/joda-time

/**
 * Always throws UnsupportedOperationException
 *
 * @throws UnsupportedOperationException
 */
public long set(long instant, String text, Locale locale) {
  throw unsupported();
}

代码示例来源:origin: joda-time/joda-time

/**
 * Always throws UnsupportedOperationException
 *
 * @throws UnsupportedOperationException
 */
public long set(long instant, String text) {
  throw unsupported();
}

代码示例来源:origin: joda-time/joda-time

/**
 * Always throws UnsupportedOperationException
 *
 * @throws UnsupportedOperationException
 */
public int getMinimumValue(ReadablePartial instant, int[] values) {
  throw unsupported();
}

代码示例来源:origin: joda-time/joda-time

/**
 * Always throws UnsupportedOperationException
 *
 * @throws UnsupportedOperationException
 */
public int getMaximumValue(ReadablePartial instant, int[] values) {
  throw unsupported();
}

代码示例来源:origin: joda-time/joda-time

/**
 * Always throws UnsupportedOperationException
 *
 * @throws UnsupportedOperationException
 */
public int getMaximumShortTextLength(Locale locale) {
  throw unsupported();
}

代码示例来源:origin: joda-time/joda-time

/**
 * Always throws UnsupportedOperationException
 *
 * @throws UnsupportedOperationException
 */
public long roundHalfCeiling(long instant) {
  throw unsupported();
}

代码示例来源:origin: joda-time/joda-time

/**
 * Always throws UnsupportedOperationException
 *
 * @throws UnsupportedOperationException
 */
public String getAsText(ReadablePartial partial, int fieldValue, Locale locale) {
  throw unsupported();
}

代码示例来源:origin: joda-time/joda-time

/**
 * Always throws UnsupportedOperationException
 *
 * @throws UnsupportedOperationException
 */
public int[] set(ReadablePartial instant, int fieldIndex, int[] values, String text, Locale locale) {
  throw unsupported();
}

代码示例来源:origin: joda-time/joda-time

/**
 * Always throws UnsupportedOperationException
 *
 * @throws UnsupportedOperationException
 */
public int getMaximumTextLength(Locale locale) {
  throw unsupported();
}

相关文章