< prev index next >

src/java.base/share/classes/jdk/internal/reflect/UnsafeQualifiedStaticObjectFieldAccessorImpl.java

Print this page




  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package jdk.internal.reflect;
  27 
  28 import java.lang.reflect.Field;
  29 
  30 class UnsafeQualifiedStaticObjectFieldAccessorImpl
  31     extends UnsafeQualifiedStaticFieldAccessorImpl
  32 {
  33     UnsafeQualifiedStaticObjectFieldAccessorImpl(Field field, boolean isReadOnly) {
  34         super(field, isReadOnly);
  35     }
  36 
  37     public Object get(Object obj) throws IllegalArgumentException {
  38         return isFlatValue() ? unsafe.getValue(obj, fieldOffset, field.getType())
  39                              : unsafe.getReferenceVolatile(base, fieldOffset);
  40     }
  41 
  42     public boolean getBoolean(Object obj) throws IllegalArgumentException {
  43         throw newGetBooleanIllegalArgumentException();
  44     }
  45 
  46     public byte getByte(Object obj) throws IllegalArgumentException {
  47         throw newGetByteIllegalArgumentException();
  48     }
  49 
  50     public char getChar(Object obj) throws IllegalArgumentException {
  51         throw newGetCharIllegalArgumentException();
  52     }
  53 
  54     public short getShort(Object obj) throws IllegalArgumentException {
  55         throw newGetShortIllegalArgumentException();
  56     }
  57 
  58     public int getInt(Object obj) throws IllegalArgumentException {


  61 
  62     public long getLong(Object obj) throws IllegalArgumentException {
  63         throw newGetLongIllegalArgumentException();
  64     }
  65 
  66     public float getFloat(Object obj) throws IllegalArgumentException {
  67         throw newGetFloatIllegalArgumentException();
  68     }
  69 
  70     public double getDouble(Object obj) throws IllegalArgumentException {
  71         throw newGetDoubleIllegalArgumentException();
  72     }
  73 
  74     public void set(Object obj, Object value)
  75         throws IllegalArgumentException, IllegalAccessException
  76     {
  77         if (isReadOnly) {
  78             throwFinalFieldIllegalAccessException(value);
  79         }
  80         checkValue(value);
  81         if (isFlatValue()) {
  82             unsafe.putValue(base, fieldOffset, field.getType(), value);
  83         } else {
  84         unsafe.putReferenceVolatile(base, fieldOffset, value);
  85         }
  86     }
  87 
  88     public void setBoolean(Object obj, boolean z)
  89         throws IllegalArgumentException, IllegalAccessException
  90     {
  91         throwSetIllegalArgumentException(z);
  92     }
  93 
  94     public void setByte(Object obj, byte b)
  95         throws IllegalArgumentException, IllegalAccessException
  96     {
  97         throwSetIllegalArgumentException(b);
  98     }
  99 
 100     public void setChar(Object obj, char c)
 101         throws IllegalArgumentException, IllegalAccessException




  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package jdk.internal.reflect;
  27 
  28 import java.lang.reflect.Field;
  29 
  30 class UnsafeQualifiedStaticObjectFieldAccessorImpl
  31     extends UnsafeQualifiedStaticFieldAccessorImpl
  32 {
  33     UnsafeQualifiedStaticObjectFieldAccessorImpl(Field field, boolean isReadOnly) {
  34         super(field, isReadOnly);
  35     }
  36 
  37     public Object get(Object obj) throws IllegalArgumentException {
  38         return isFlattened() ? unsafe.getValue(obj, fieldOffset, field.getType())
  39                              : unsafe.getReferenceVolatile(base, fieldOffset);
  40     }
  41 
  42     public boolean getBoolean(Object obj) throws IllegalArgumentException {
  43         throw newGetBooleanIllegalArgumentException();
  44     }
  45 
  46     public byte getByte(Object obj) throws IllegalArgumentException {
  47         throw newGetByteIllegalArgumentException();
  48     }
  49 
  50     public char getChar(Object obj) throws IllegalArgumentException {
  51         throw newGetCharIllegalArgumentException();
  52     }
  53 
  54     public short getShort(Object obj) throws IllegalArgumentException {
  55         throw newGetShortIllegalArgumentException();
  56     }
  57 
  58     public int getInt(Object obj) throws IllegalArgumentException {


  61 
  62     public long getLong(Object obj) throws IllegalArgumentException {
  63         throw newGetLongIllegalArgumentException();
  64     }
  65 
  66     public float getFloat(Object obj) throws IllegalArgumentException {
  67         throw newGetFloatIllegalArgumentException();
  68     }
  69 
  70     public double getDouble(Object obj) throws IllegalArgumentException {
  71         throw newGetDoubleIllegalArgumentException();
  72     }
  73 
  74     public void set(Object obj, Object value)
  75         throws IllegalArgumentException, IllegalAccessException
  76     {
  77         if (isReadOnly) {
  78             throwFinalFieldIllegalAccessException(value);
  79         }
  80         checkValue(value);
  81         if (isFlattened()) {
  82             unsafe.putValue(base, fieldOffset, field.getType(), value);
  83         } else {
  84         unsafe.putReferenceVolatile(base, fieldOffset, value);
  85         }
  86     }
  87 
  88     public void setBoolean(Object obj, boolean z)
  89         throws IllegalArgumentException, IllegalAccessException
  90     {
  91         throwSetIllegalArgumentException(z);
  92     }
  93 
  94     public void setByte(Object obj, byte b)
  95         throws IllegalArgumentException, IllegalAccessException
  96     {
  97         throwSetIllegalArgumentException(b);
  98     }
  99 
 100     public void setChar(Object obj, char c)
 101         throws IllegalArgumentException, IllegalAccessException


< prev index next >