Package com.google.devtools.ksp
Enum KspCliOption
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable,org.jetbrains.kotlin.compiler.plugin.AbstractCliOption
public enum KspCliOption extends Enum<KspCliOption> implements AbstractCliOption
-
-
Field Summary
Fields Modifier and Type Field Description private final StringoptionNameprivate final StringvalueDescriptionprivate final Stringdescriptionprivate final Booleanrequiredprivate final BooleanallowMultipleOccurrencesprivate final Stringnameprivate final Integerordinal
-
Enum Constant Summary
-
Method Summary
Modifier and Type Method Description final KspCliOptionvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<KspCliOption>values()Returns an array containing the constants of this enum type, in the order they're declared. StringgetOptionName()StringgetValueDescription()StringgetDescription()BooleangetRequired()BooleangetAllowMultipleOccurrences()-
-
Method Detail
-
valueOf
final KspCliOption valueOf(String value)
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.)
-
values
final Array<KspCliOption> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getOptionName
String getOptionName()
-
getValueDescription
String getValueDescription()
-
getDescription
String getDescription()
-
getRequired
Boolean getRequired()
-
getAllowMultipleOccurrences
Boolean getAllowMultipleOccurrences()
-
-
-
-