public static enum Stroke.JoinStyle extends Enum<Stroke.JoinStyle>
| Modifier and Type | Method and Description |
|---|---|
int |
value() |
static Stroke.JoinStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Stroke.JoinStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Stroke.JoinStyle Miter
public static final Stroke.JoinStyle Round
public static final Stroke.JoinStyle Bevel
public static Stroke.JoinStyle[] values()
for (Stroke.JoinStyle c : Stroke.JoinStyle.values()) System.out.println(c);
public static Stroke.JoinStyle 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 int value()
Copyright © 2021. All rights reserved.