unmarshal static method

EllaTime unmarshal(
  1. MarshalledObject marshalled
)

Encoded object parameter is encoded depending on format.

Implementation

static EllaTime unmarshal(MarshalledObject marshalled)
{
  int seconds = marshalled.asInt();
  return new EllaTime(seconds);
}