Union type in Processing programming

hi , below code is for c++

typedef union{
float number;
uint8_t bytes[4];
} FLOATUNION_t;

FLOATUNION_t myValue;

how can i write it in processing ?