unmarshal static method
Implementation
static IntegerRange unmarshal(MarshalledObject marshalled)
{
return new IntegerRange(
marshalled.getRequired("begin").asInt(),
marshalled.getRequired("end").asInt()
);
}
static IntegerRange unmarshal(MarshalledObject marshalled)
{
return new IntegerRange(
marshalled.getRequired("begin").asInt(),
marshalled.getRequired("end").asInt()
);
}