Package 

Class GFieldGroup

  • All Implemented Interfaces:
    java.io.Externalizable , java.io.Serializable , java.lang.Comparable , org.apache.avro.generic.GenericContainer , org.apache.avro.generic.GenericRecord , org.apache.avro.generic.IndexedRecord , org.apache.avro.specific.SpecificRecord , org.apache.gora.persistency.Dirtyable , org.apache.gora.persistency.Persistent

    
    public class GFieldGroup
    extends PersistentBase implements SpecificRecord, Persistent
                        
    • Method Detail

      • setId

         void setId(Long value)

        Sets the value of the 'id' field.

        Parameters:
        value - the value to set.
      • setParentId

         void setParentId(Long value)

        Sets the value of the 'parentId' field.

        Parameters:
        value - the value to set.
      • setName

         void setName(CharSequence value)

        Sets the value of the 'name' field.

        Parameters:
        value - the value to set.
      • isIdDirty

         boolean isIdDirty()

        Checks the dirty status of the 'id' field. A field is dirty if it represents a change that has not yet been written to the database.

      • isParentIdDirty

         boolean isParentIdDirty()

        Checks the dirty status of the 'parentId' field. A field is dirty if it represents a change that has not yet been written to the database.

      • isNameDirty

         boolean isNameDirty()

        Checks the dirty status of the 'name' field. A field is dirty if it represents a change that has not yet been written to the database.

      • isFieldsDirty

         boolean isFieldsDirty()

        Checks the dirty status of the 'fields' field. A field is dirty if it represents a change that has not yet been written to the database.

      • writeExternal

         void writeExternal(ObjectOutput out)

        Writes AVRO data bean to output stream in the form of AVRO Binary encoding format. This will transformAVRO data bean from its Java object form to it s serializable form.

        Parameters:
        out - java.io.
      • readExternal

         void readExternal(ObjectInput in)

        Reads AVRO data bean from input stream in it s AVRO Binary encoding format to Java object format.This will transform AVRO data bean from it s serializable form to deserialized Java object form.

        Parameters:
        in - java.io.