public static enum RenderingHintsBuilder.Interpolation extends Enum<RenderingHintsBuilder.Interpolation>
Enum Constant and Description |
---|
BICUBIC
双三次插值
|
BILINEAR
双线性插值
|
NEAREST_NEIGHBOR
最近邻插值
|
Modifier and Type | Method and Description |
---|---|
Object |
getValue()
获取值
|
static RenderingHintsBuilder.Interpolation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RenderingHintsBuilder.Interpolation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderingHintsBuilder.Interpolation BICUBIC
public static final RenderingHintsBuilder.Interpolation BILINEAR
public static final RenderingHintsBuilder.Interpolation NEAREST_NEIGHBOR
public static RenderingHintsBuilder.Interpolation[] values()
for (RenderingHintsBuilder.Interpolation c : RenderingHintsBuilder.Interpolation.values()) System.out.println(c);
public static RenderingHintsBuilder.Interpolation valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic Object getValue()
Copyright © 2025. All rights reserved.