public enum SourcePosition extends Enum<SourcePosition>
| Modifier and Type | Method and Description |
|---|---|
SourcePosition |
toggle() |
static SourcePosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SourcePosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SourcePosition PRIMARY
public static final SourcePosition SECONDARY
public static SourcePosition[] values()
for (SourcePosition c : SourcePosition.values()) System.out.println(c);
public static SourcePosition 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 SourcePosition toggle()
Copyright © 2020–2024 Flowing Code. All rights reserved.