public enum OutputFormat extends Enum<OutputFormat>
Abstract3d
class.Enum Constant and Description |
---|
POLYGON
The textual Polygon output format.
|
SCAD
The SCAD output format.
|
STL
The textual STL output format.
|
Modifier and Type | Method and Description |
---|---|
String |
getPostText()
Returns with the string after the three numbers.
|
String |
getPreText()
Returns with the string before the three numbers.
|
String |
getSeparator()
Returns with the string separating the three numbers.
|
static OutputFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OutputFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputFormat SCAD
[10,20,30]
.public static final OutputFormat STL
10 20 30
public static final OutputFormat POLYGON
10 20 30
public static OutputFormat[] values()
for (OutputFormat c : OutputFormat.values()) System.out.println(c);
public static OutputFormat 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 String getPreText()
public String getPostText()
public String getSeparator()
Copyright © 2014–2020, Printing in 3D. All rights reserved.