ValueRange.Of Método

Definición

Sobrecargas

Nombre Description
Of(Int64, Int64)

Obtiene un intervalo de valores fijo.

Of(Int64, Int64, Int64)

Obtiene un intervalo de valores de variable.

Of(Int64, Int64, Int64, Int64)

Obtiene un intervalo de valores completamente variable.

Of(Int64, Int64)

Obtiene un intervalo de valores fijo.

[Android.Runtime.Register("of", "(JJ)Ljava/time/temporal/ValueRange;", "", ApiSince=26)]
public static Java.Time.Temporal.ValueRange? Of(long min, long max);
[<Android.Runtime.Register("of", "(JJ)Ljava/time/temporal/ValueRange;", "", ApiSince=26)>]
static member Of : int64 * int64 -> Java.Time.Temporal.ValueRange

Parámetros

min
Int64

el valor mínimo

max
Int64

el valor máximo

Devoluciones

ValueRange para min, max, not null

Atributos

Comentarios

Java documentación para java.time.temporal.ValueRange.of(long, long).

Las partes de esta página son modificaciones basadas en el trabajo creado y compartido por el Android y se usan según los términos descritos en creative Creative Commons 2.5 Attribution License.

Se aplica a

Of(Int64, Int64, Int64)

Obtiene un intervalo de valores de variable.

[Android.Runtime.Register("of", "(JJJ)Ljava/time/temporal/ValueRange;", "", ApiSince=26)]
public static Java.Time.Temporal.ValueRange? Of(long min, long maxSmallest, long maxLargest);
[<Android.Runtime.Register("of", "(JJJ)Ljava/time/temporal/ValueRange;", "", ApiSince=26)>]
static member Of : int64 * int64 * int64 -> Java.Time.Temporal.ValueRange

Parámetros

min
Int64

el valor mínimo

maxSmallest
Int64

el valor máximo más pequeño

maxLargest
Int64

el valor máximo más grande

Devoluciones

ValueRange para min, smallest max, largest max, not null

Atributos

Comentarios

Java documentación para java.time.temporal.ValueRange.of(long, long, long).

Las partes de esta página son modificaciones basadas en el trabajo creado y compartido por el Android y se usan según los términos descritos en creative Creative Commons 2.5 Attribution License.

Se aplica a

Of(Int64, Int64, Int64, Int64)

Obtiene un intervalo de valores completamente variable.

[Android.Runtime.Register("of", "(JJJJ)Ljava/time/temporal/ValueRange;", "", ApiSince=26)]
public static Java.Time.Temporal.ValueRange? Of(long minSmallest, long minLargest, long maxSmallest, long maxLargest);
[<Android.Runtime.Register("of", "(JJJJ)Ljava/time/temporal/ValueRange;", "", ApiSince=26)>]
static member Of : int64 * int64 * int64 * int64 -> Java.Time.Temporal.ValueRange

Parámetros

minSmallest
Int64

el valor mínimo más pequeño

minLargest
Int64

el valor mínimo más grande

maxSmallest
Int64

el valor máximo más pequeño

maxLargest
Int64

el valor máximo más grande

Devoluciones

ValueRange para min más pequeños, min más grandes, máx. más pequeño, max más grande, no null

Atributos

Comentarios

Java documentación para java.time.temporal.ValueRange.of(long, long, long, long).

Las partes de esta página son modificaciones basadas en el trabajo creado y compartido por el Android y se usan según los términos descritos en creative Creative Commons 2.5 Attribution License.

Se aplica a