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

com.kintone.client.model.record.FieldValue Maven / Gradle / Ivy

package com.kintone.client.model.record;

/** An interface represents the field values of {@link Record}. */
public interface FieldValue {

    /**
     * Returns the type of field.
     *
     * @return the type of field.
     */
    FieldType getType();

    /**
     * States whether the field is a built-in field.
     *
     * @return true if the field is a built-in field.
     */
    default boolean isBuiltin() {
        return getType().isBuiltin();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy