El método getSmallestMaximum() de la clase ValueRange se usa para obtener el valor máximo más pequeño posible que puede tomar valueRange. Por ejemplo, ChronoField DAY_OF_MONTH siempre se encuentra entre 28 y 31 días. Por lo tanto, el máximo más pequeño es 28.
Sintaxis:
public long getSmallestMaximum()
Parámetros: Este método no acepta nada.
Valor devuelto: este método devuelve el valor máximo más pequeño posible para este valueRange.
Los siguientes programas ilustran el método ValueRange.getSmallestMaximum():
Programa 1:
// Java program to demonstrate // ValueRange.getSmallestMaximum() method import java.time.LocalDateTime; import java.time.temporal.ChronoField; import java.time.temporal.ValueRange; public class GFG { public static void main(String[] args) { // create LocalDateTime LocalDateTime l1 = LocalDateTime .parse("2018-02-06T19:21:12"); // Get ValueRange object ValueRange vR = l1.range(ChronoField.DAY_OF_MONTH); // apply getSmallestMaximum() long sMax = vR.getSmallestMaximum(); // print results System.out.println("Smallest Maximum " + "for DAY_OF_MONTH: " + sMax); } }
Smallest Maximum for DAY_OF_MONTH: 28
Programa 2:
// Java program to demonstrate // ValueRange.getSmallestMaximum() method import java.time.temporal.ValueRange; public class GFG { public static void main(String[] args) { // create ValueRange object ValueRange vRange = ValueRange.of(1111, 99999); // get smallest Maximum value long smax = vRange.getSmallestMaximum(); // print results System.out.println("smallest maximum : " + smax); } }
smallest maximum : 99999
Referencias: https://docs.oracle.com/javase/10/docs/api/java/time/temporal/ValueRange.html#getSmallestMaximum()
Publicación traducida automáticamente
Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA