Class FieldAccessor_Byte<B>

  • All Implemented Interfaces:
    Receiver

    public class FieldAccessor_Byte<B>
    extends Accessor<B,​Byte>
    Template Accessor for byte fields.

    All the FieldAccessors are generated from FieldAccessor_Byte

    Author:
    Kohsuke Kawaguchi
    • Constructor Detail

      • FieldAccessor_Byte

        public FieldAccessor_Byte()
    • Method Detail

      • get

        public Byte get​(B bean)
        Description copied from class: Accessor
        Gets the value of the property of the given bean object.
        Specified by:
        get in class Accessor<B,​Byte>
        Parameters:
        bean - must not be null.
      • set

        public void set​(B bean,
                        Byte value)
        Description copied from class: Accessor
        Sets the value of the property of the given bean object.
        Specified by:
        set in class Accessor<B,​Byte>
        Parameters:
        bean - must not be null.
        value - the value to be set. Setting value to null means resetting to the VM default value (even for primitive properties.)