public enum KotlinModifier extends Enum<KotlinModifier>
Modifier and Type | Method and Description |
---|---|
String |
getValue() |
static KotlinModifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KotlinModifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KotlinModifier PUBLIC
public static final KotlinModifier PRIVATE
public static final KotlinModifier DATA
public static final KotlinModifier LATE_INIT
public static KotlinModifier[] values()
for (KotlinModifier c : KotlinModifier.values()) System.out.println(c);
public static KotlinModifier 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 getValue()
Copyright © 2006–2024 MyBatis.org. All rights reserved.