Enum BorderStyle
- java.lang.Object
- 
- java.lang.Enum<BorderStyle>
- 
- com.inductiveautomation.perspective.designer.styles.attributes.BorderStyle
 
 
- 
- All Implemented Interfaces:
- AlternateName,- java.io.Serializable,- java.lang.Comparable<BorderStyle>
 
 public enum BorderStyle extends java.lang.Enum<BorderStyle> implements AlternateName 
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetAlternateName()static BorderStylevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static BorderStyle[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
nonepublic static final BorderStyle none 
 - 
solidpublic static final BorderStyle solid 
 - 
dashedpublic static final BorderStyle dashed 
 - 
dottedpublic static final BorderStyle dotted 
 - 
doubleBorderpublic static final BorderStyle doubleBorder 
 - 
groovepublic static final BorderStyle groove 
 - 
ridgepublic static final BorderStyle ridge 
 - 
insetpublic static final BorderStyle inset 
 - 
outsetpublic static final BorderStyle outset 
 - 
hiddenpublic static final BorderStyle hidden 
 
- 
 - 
Method Detail- 
valuespublic static BorderStyle[] 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 (BorderStyle c : BorderStyle.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static BorderStyle 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
 
 - 
getAlternateNamepublic java.lang.String getAlternateName() - Specified by:
- getAlternateNamein interface- AlternateName
 
 
- 
 
-