gpt4 book ai didi

org.joda.time.Years.getValue()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-17 17:24:40 26 4
gpt4 key购买 nike

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

Years.getValue介绍

暂无

代码示例

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

/**
 * Gets the number of years that this period represents.
 *
 * @return the number of years in the period
 */
public int getYears() {
  return getValue();
}

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

/**
 * Is this years instance less than the specified number of years.
 *
 * @param other  the other period, null means zero
 * @return true if this years instance is less than the specified one
 */
public boolean isLessThan(Years other) {
  if (other == null) {
    return getValue() < 0;
  }
  return getValue() < other.getValue();
}

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

/**
 * Is this years instance greater than the specified number of years.
 *
 * @param other  the other period, null means zero
 * @return true if this years instance is greater than the specified one
 */
public boolean isGreaterThan(Years other) {
  if (other == null) {
    return getValue() > 0;
  }
  return getValue() > other.getValue();
}

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

/**
 * Is this years instance greater than the specified number of years.
 *
 * @param other  the other period, null means zero
 * @return true if this years instance is greater than the specified one
 */
public boolean isGreaterThan(Years other) {
  if (other == null) {
    return getValue() > 0;
  }
  return getValue() > other.getValue();
}

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

/**
 * Is this years instance less than the specified number of years.
 *
 * @param other  the other period, null means zero
 * @return true if this years instance is less than the specified one
 */
public boolean isLessThan(Years other) {
  if (other == null) {
    return getValue() < 0;
  }
  return getValue() < other.getValue();
}

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

/**
 * Gets the number of years that this period represents.
 *
 * @return the number of years in the period
 */
public int getYears() {
  return getValue();
}

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

/**
 * Resolves singletons.
 * 
 * @return the singleton instance
 */
private Object readResolve() {
  return Years.years(getValue());
}

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

/**
 * Gets this instance as a String in the ISO8601 duration format.
 * <p>
 * For example, "P4Y" represents 4 years.
 *
 * @return the value as an ISO8601 string
 */
@ToString
public String toString() {
  return "P" + String.valueOf(getValue()) + "Y";
}

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

/**
 * Gets this instance as a String in the ISO8601 duration format.
 * <p>
 * For example, "P4Y" represents 4 years.
 *
 * @return the value as an ISO8601 string
 */
@ToString
public String toString() {
  return "P" + String.valueOf(getValue()) + "Y";
}

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

/**
 * Resolves singletons.
 * 
 * @return the singleton instance
 */
private Object readResolve() {
  return Years.years(getValue());
}

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

/**
 * Returns a new instance with the specified number of years added.
 * <p>
 * This instance is immutable and unaffected by this method call.
 *
 * @param years  the amount of years to add, may be negative, null means zero
 * @return the new period plus the specified number of years
 * @throws ArithmeticException if the result overflows an int
 */
public Years plus(Years years) {
  if (years == null) {
    return this;
  }
  return plus(years.getValue());
}

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

/**
 * Returns a new instance with the specified number of years taken away.
 * <p>
 * This instance is immutable and unaffected by this method call.
 *
 * @param years  the amount of years to take away, may be negative, null means zero
 * @return the new period minus the specified number of years
 * @throws ArithmeticException if the result overflows an int
 */
public Years minus(Years years) {
  if (years == null) {
    return this;
  }
  return minus(years.getValue());
}

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

/**
 * Returns a new instance with the years divided by the specified divisor.
 * The calculation uses integer division, thus 3 divided by 2 is 1.
 * <p>
 * This instance is immutable and unaffected by this method call.
 *
 * @param divisor  the amount to divide by, may be negative
 * @return the new period divided by the specified divisor
 * @throws ArithmeticException if the divisor is zero
 */
public Years dividedBy(int divisor) {
  if (divisor == 1) {
    return this;
  }
  return Years.years(getValue() / divisor);
}

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

/**
 * Returns a new instance with the specified number of years taken away.
 * <p>
 * This instance is immutable and unaffected by this method call.
 *
 * @param years  the amount of years to take away, may be negative, null means zero
 * @return the new period minus the specified number of years
 * @throws ArithmeticException if the result overflows an int
 */
public Years minus(Years years) {
  if (years == null) {
    return this;
  }
  return minus(years.getValue());
}

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

/**
 * Returns a new instance with the years value negated.
 *
 * @return the new period with a negated value
 * @throws ArithmeticException if the result overflows an int
 */
public Years negated() {
  return Years.years(FieldUtils.safeNegate(getValue()));
}

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

/**
 * Returns a new instance with the years multiplied by the specified scalar.
 * <p>
 * This instance is immutable and unaffected by this method call.
 *
 * @param scalar  the amount to multiply by, may be negative
 * @return the new period multiplied by the specified scalar
 * @throws ArithmeticException if the result overflows an int
 */
public Years multipliedBy(int scalar) {
  return Years.years(FieldUtils.safeMultiply(getValue(), scalar));
}

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

/**
 * Returns a new instance with the years multiplied by the specified scalar.
 * <p>
 * This instance is immutable and unaffected by this method call.
 *
 * @param scalar  the amount to multiply by, may be negative
 * @return the new period multiplied by the specified scalar
 * @throws ArithmeticException if the result overflows an int
 */
public Years multipliedBy(int scalar) {
  return Years.years(FieldUtils.safeMultiply(getValue(), scalar));
}

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

/**
 * Returns a new instance with the years value negated.
 *
 * @return the new period with a negated value
 * @throws ArithmeticException if the result overflows an int
 */
public Years negated() {
  return Years.years(FieldUtils.safeNegate(getValue()));
}

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

/**
 * Returns a new instance with the specified number of years added.
 * <p>
 * This instance is immutable and unaffected by this method call.
 *
 * @param years  the amount of years to add, may be negative
 * @return the new period plus the specified number of years
 * @throws ArithmeticException if the result overflows an int
 */
public Years plus(int years) {
  if (years == 0) {
    return this;
  }
  return Years.years(FieldUtils.safeAdd(getValue(), years));
}

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

/**
 * Returns a new instance with the specified number of years added.
 * <p>
 * This instance is immutable and unaffected by this method call.
 *
 * @param years  the amount of years to add, may be negative
 * @return the new period plus the specified number of years
 * @throws ArithmeticException if the result overflows an int
 */
public Years plus(int years) {
  if (years == 0) {
    return this;
  }
  return Years.years(FieldUtils.safeAdd(getValue(), years));
}

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com