All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.babyfish.jimmer.dto.compiler.DtoProp Maven / Gradle / Ivy

There is a newer version: 0.9.19
Show newest version
package org.babyfish.jimmer.dto.compiler;

import org.babyfish.jimmer.dto.compiler.spi.BaseProp;
import org.babyfish.jimmer.dto.compiler.spi.BaseType;
import org.jetbrains.annotations.Nullable;

import java.util.Map;
import java.util.Set;

public interface DtoProp extends DtoPropImplementor {

    DtoProp toTailProp();

    @Override
    P getBaseProp();

    @Override
    Map getBasePropMap();

    String getBasePath();

    @Nullable
    DtoProp getNextProp();

    String getName();

    boolean isBaseNullable();

    boolean isIdOnly();

    boolean isFlat();

    boolean isFunc(String ... funcNames);

    @Nullable
    String getAlias();

    @Nullable
    DtoType getTargetType();

    @Nullable
    EnumType getEnumType();

    boolean isRecursive();

    Set getLikeOptions();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy