Amplication AST Libraries Documentation
    Preparing search index...

    Interface defining the configuration for an enum constant.

    Value

    interface Value {
        name: string;
        arguments_?: CodeBlock;
        annotations?: Annotation[];
        javadoc?: string;
    }
    Index

    Properties

    name: string

    The name of the enum constant

    arguments_?: CodeBlock

    Arguments to pass to the enum constructor

    annotations?: Annotation[]

    Annotations for the enum constant

    javadoc?: string

    Documentation/JavaDoc for the enum constant