javafx.animation
Enum KeyValue.Type
- java.lang.Enum<KeyValue.Type>
-
- javafx.animation.KeyValue.Type
All Implemented Interfaces:
Enclosing class:
Deprecated.
This is an internal API that is not intended for use and will be removed in the next version
@Deprecated public static enum KeyValue.Type extends Enum<KeyValue.Type>
Since:
JavaFX 2.0
-
Enum Constant Summary
Enum Constants Enum Constant and Description BOOLEANDeprecated.DOUBLEDeprecated.FLOATDeprecated.INTEGERDeprecated.LONGDeprecated.OBJECTDeprecated.
-
Method Summary
All MethodsStatic MethodsConcrete MethodsDeprecated Methods Modifier and Type Method and Description static KeyValue.TypevalueOf(String name)Deprecated.Returns the enum constant of this type with the specified name.static KeyValue.Type[]values()Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Detail
-
BOOLEAN
public static final KeyValue.Type BOOLEAN
Deprecated.
-
DOUBLE
public static final KeyValue.Type DOUBLE
Deprecated.
-
FLOAT
public static final KeyValue.Type FLOAT
Deprecated.
-
INTEGER
public static final KeyValue.Type INTEGER
Deprecated.
-
LONG
public static final KeyValue.Type LONG
Deprecated.
-
OBJECT
public static final KeyValue.Type OBJECT
Deprecated.
-
-
Method Detail
-
values
public static KeyValue.Type[] values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (KeyValue.Type c : KeyValue.Type.values()) System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static KeyValue.Type valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)Parameters:
name- the name of the enum constant to be returned.Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException- if this enum type has no constant with the specified name
-
© 2008, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from JavaFX API Documentation.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Java, JavaFX and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.