330331332333334335336337338
_name = (String)_names.get(new Integer(_kind.value())); } */ if (_name == null) { throw new BadKind(); } return _name; }
356357358359360361362363364
{ return _ref.member_count(); } if (_member_name == null) { throw new BadKind(); } return _member_name.length; }
393394395396397398399400401402403
{ return _ref.member_name(index); } if (_member_name == null) { throw new BadKind(); } if (index < 0 || index >= _member_name.length) { throw new Bounds(); }
426427428429430431432433434435436
{ return _ref.member_type(index); } if (_member_type == null) { throw new BadKind(); } if (index < 0 || index >= _member_type.length) { throw new Bounds(); }
459460461462463464465466467468469
{ return _ref.member_label(index); } if (_member_label == null) { throw new BadKind(); } if (index < 0 || index >= _member_label.length) { throw new Bounds(); }
491492493494495496497498499
return _ref.discriminator_type(); } if (_ref == null || _kind.value() != TCKind._tk_union) { throw new BadKind(); } return _ref; }
517518519520521522523524525
{ return _ref.default_index(); } if (_kind.value() != TCKind._tk_union) { throw new BadKind(); } return _default; }
552553554555556557558559560
int tk = _kind.value(); if (tk != TCKind._tk_string && tk != TCKind._tk_wstring && tk != TCKind._tk_sequence && tk != TCKind._tk_array) { throw new BadKind(); } return _length; }
585586587588589590591592593
tk != TCKind._tk_array && tk != TCKind._tk_sequence && tk != TCKind._tk_value_box)) { throw new BadKind(); } return _ref; }
612613614615616617618619620
return _ref.fixed_digits(); } int tk = _kind.value(); if (tk != TCKind._tk_fixed) { throw new BadKind(); } return _digits; }