- java.lang.Object
-
- java.lang.Enum<IntroductionDefinition.Section>
-
- io.rxmicro.documentation.IntroductionDefinition.Section
-
- All Implemented Interfaces:
Serializable,Comparable<IntroductionDefinition.Section>
- Enclosing class:
- IntroductionDefinition
public static enum IntroductionDefinition.Section extends Enum<IntroductionDefinition.Section>
- Author:
- nedis
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Base_EndpointCommon_ConceptCustom_sectionError_ModelHandler_Not_FoundHttp_VerbsLicensesSpecification
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisCustomSection()static IntroductionDefinition.SectionvalueOf(String name)Returns the enum constant of this type with the specified name.static IntroductionDefinition.Section[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Common_Concept
public static final IntroductionDefinition.Section Common_Concept
-
Base_Endpoint
public static final IntroductionDefinition.Section Base_Endpoint
-
Http_Verbs
public static final IntroductionDefinition.Section Http_Verbs
-
Error_Model
public static final IntroductionDefinition.Section Error_Model
-
Handler_Not_Found
public static final IntroductionDefinition.Section Handler_Not_Found
-
Licenses
public static final IntroductionDefinition.Section Licenses
-
Specification
public static final IntroductionDefinition.Section Specification
-
Custom_section
public static final IntroductionDefinition.Section Custom_section
-
-
Method Detail
-
values
public static IntroductionDefinition.Section[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IntroductionDefinition.Section c : IntroductionDefinition.Section.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IntroductionDefinition.Section valueOf(String name)
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.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
isCustomSection
public boolean isCustomSection()
-
-