public class

OtherDataType

extends Object
implements Serializable
java.lang.Object
   ↳ com.workday.payroll.OtherDataType

Class Overview

This element is wrapper for W-2 Box 14 Other Data.

Java class for Other_DataType complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="Other_DataType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="Label" minOccurs="0">
           <simpleType>
             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
               <maxLength value="9"/>
             </restriction>
           </simpleType>
         </element>
         <element name="Amount" minOccurs="0">
           <simpleType>
             <restriction base="{http://www.w3.org/2001/XMLSchema}decimal">
               <totalDigits value="26"/>
               <fractionDigits value="6"/>
             </restriction>
           </simpleType>
         </element>
         <element name="Customer_Owned" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 

Summary

Constants
long serialVersionUID
Fields
protected BigDecimal amount
protected Boolean customerOwned
protected String label
Public Constructors
OtherDataType()
Public Methods
BigDecimal getAmount()
Gets the value of the amount property.
Boolean getCustomerOwned()
Gets the value of the customerOwned property.
String getLabel()
Gets the value of the label property.
void setAmount(BigDecimal value)
Sets the value of the amount property.
void setCustomerOwned(Boolean value)
Sets the value of the customerOwned property.
void setLabel(String value)
Sets the value of the label property.
[Expand]
Inherited Methods
From class java.lang.Object

Constants

private static final long serialVersionUID

Constant Value: 1 (0x0000000000000001)

Fields

protected BigDecimal amount

protected Boolean customerOwned

protected String label

Public Constructors

public OtherDataType ()

Public Methods

public BigDecimal getAmount ()

Gets the value of the amount property.

Returns
  • possible object is BigDecimal

public Boolean getCustomerOwned ()

Gets the value of the customerOwned property. This getter has been renamed from isCustomerOwned() to getCustomerOwned() by cxf-xjc-boolean plugin.

Returns
  • possible object is Boolean

public String getLabel ()

Gets the value of the label property.

Returns
  • possible object is String

public void setAmount (BigDecimal value)

Sets the value of the amount property.

Parameters
value Allowed object is BigDecimal

public void setCustomerOwned (Boolean value)

Sets the value of the customerOwned property.

Parameters
value Allowed object is Boolean

public void setLabel (String value)

Sets the value of the label property.

Parameters
value Allowed object is String