Enum AnimationTimingFunction
- java.lang.Object
- 
- java.lang.Enum<AnimationTimingFunction>
- 
- com.inductiveautomation.perspective.designer.styles.attributes.AnimationTimingFunction
 
 
- 
- All Implemented Interfaces:
- Suggestion,- java.io.Serializable,- java.lang.Comparable<AnimationTimingFunction>
 
 public enum AnimationTimingFunction extends java.lang.Enum<AnimationTimingFunction> implements Suggestion 
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetShorthand()The shorthand to display to the userjava.lang.StringgetValue()The actual value for the underlying propertystatic AnimationTimingFunctionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AnimationTimingFunction[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
linearpublic static final AnimationTimingFunction linear 
 - 
easepublic static final AnimationTimingFunction ease 
 - 
easeInpublic static final AnimationTimingFunction easeIn 
 - 
easeOutpublic static final AnimationTimingFunction easeOut 
 - 
easeInOutpublic static final AnimationTimingFunction easeInOut 
 - 
stepStartpublic static final AnimationTimingFunction stepStart 
 - 
stepEndpublic static final AnimationTimingFunction stepEnd 
 - 
exaggeratepublic static final AnimationTimingFunction exaggerate 
 
- 
 - 
Method Detail- 
valuespublic static AnimationTimingFunction[] values() 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 (AnimationTimingFunction c : AnimationTimingFunction.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static AnimationTimingFunction valueOf(java.lang.String name) 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:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 - 
getShorthandpublic java.lang.String getShorthand() Description copied from interface:SuggestionThe shorthand to display to the user- Specified by:
- getShorthandin interface- Suggestion
 
 - 
getValuepublic java.lang.String getValue() Description copied from interface:SuggestionThe actual value for the underlying property- Specified by:
- getValuein interface- Suggestion
 
 
- 
 
-