Package page.codeberg.friedolyn
Enum Class Friedolyn.ContactRequest
- All Implemented Interfaces:
Serializable
,Comparable<Friedolyn.ContactRequest>
,Constable
- Enclosing class:
Friedolyn
The various types of requests that can be sent via the
contact form
.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe user has noticed unexpected/unwanted behaviour in Friedolyn and wants to report it to the developers so that they can fix it.The user has an idea for a new functionality to be added to Friedolyn and wants to suggest it to the developers.The user wants to express their opinion about Friedolyn, i.e.The user needs help from the developers of Friedolyn. -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic Optional
<Friedolyn.ContactRequest> Converts a givenlabel
to a value of this enum, if it exists.static Friedolyn.ContactRequest
Returns the enum constant of this class with the specified name.static Friedolyn.ContactRequest[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SUPPORT
The user needs help from the developers of Friedolyn. -
FEEDBACK
The user wants to express their opinion about Friedolyn, i.e. what they like or dislike about it. -
BUG_REPORT
The user has noticed unexpected/unwanted behaviour in Friedolyn and wants to report it to the developers so that they can fix it. -
FEATURE
The user has an idea for a new functionality to be added to Friedolyn and wants to suggest it to the developers.
-
-
Field Details
-
label
-
-
Constructor Details
-
ContactRequest
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
ofLabel
-