org.hibernate.engine.spi
Interface PersistentAttributeInterceptor


public interface PersistentAttributeInterceptor


Method Summary
 boolean readBoolean(Object obj, String name, boolean oldValue)
           
 byte readByte(Object obj, String name, byte oldValue)
           
 char readChar(Object obj, String name, char oldValue)
           
 double readDouble(Object obj, String name, double oldValue)
           
 float readFloat(Object obj, String name, float oldValue)
           
 int readInt(Object obj, String name, int oldValue)
           
 long readLong(Object obj, String name, long oldValue)
           
 Object readObject(Object obj, String name, Object oldValue)
           
 short readShort(Object obj, String name, short oldValue)
           
 boolean writeBoolean(Object obj, String name, boolean oldValue, boolean newValue)
           
 byte writeByte(Object obj, String name, byte oldValue, byte newValue)
           
 char writeChar(Object obj, String name, char oldValue, char newValue)
           
 double writeDouble(Object obj, String name, double oldValue, double newValue)
           
 float writeFloat(Object obj, String name, float oldValue, float newValue)
           
 int writeInt(Object obj, String name, int oldValue, int newValue)
           
 long writeLong(Object obj, String name, long oldValue, long newValue)
           
 Object writeObject(Object obj, String name, Object oldValue, Object newValue)
           
 short writeShort(Object obj, String name, short oldValue, short newValue)
           
 

Method Detail

readBoolean

boolean readBoolean(Object obj,
                    String name,
                    boolean oldValue)

writeBoolean

boolean writeBoolean(Object obj,
                     String name,
                     boolean oldValue,
                     boolean newValue)

readByte

byte readByte(Object obj,
              String name,
              byte oldValue)

writeByte

byte writeByte(Object obj,
               String name,
               byte oldValue,
               byte newValue)

readChar

char readChar(Object obj,
              String name,
              char oldValue)

writeChar

char writeChar(Object obj,
               String name,
               char oldValue,
               char newValue)

readShort

short readShort(Object obj,
                String name,
                short oldValue)

writeShort

short writeShort(Object obj,
                 String name,
                 short oldValue,
                 short newValue)

readInt

int readInt(Object obj,
            String name,
            int oldValue)

writeInt

int writeInt(Object obj,
             String name,
             int oldValue,
             int newValue)

readFloat

float readFloat(Object obj,
                String name,
                float oldValue)

writeFloat

float writeFloat(Object obj,
                 String name,
                 float oldValue,
                 float newValue)

readDouble

double readDouble(Object obj,
                  String name,
                  double oldValue)

writeDouble

double writeDouble(Object obj,
                   String name,
                   double oldValue,
                   double newValue)

readLong

long readLong(Object obj,
              String name,
              long oldValue)

writeLong

long writeLong(Object obj,
               String name,
               long oldValue,
               long newValue)

readObject

Object readObject(Object obj,
                  String name,
                  Object oldValue)

writeObject

Object writeObject(Object obj,
                   String name,
                   Object oldValue,
                   Object newValue)


Copyright © 2001-2013 Red Hat, Inc. All Rights Reserved.