java/core/src/main/java/org/bondlib/StructBondType.java [2258:2290]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        @Override
        public final boolean isDefaultNothing() {
            return true;
        }

        @Override
        public final String getDefaultValue() {
            return null;
        }

        public final SomethingObject<String> initialize() {
            return null;
        }

        public final SomethingObject<String> clone(SomethingObject<String> value) {
            return value == null ? null : Something.wrap(value.value);
        }

        public final void serialize(
                SerializationContext context, SomethingObject<String> value) throws IOException {
            this.fieldType.serializeSomethingField(context, value, this);
        }

        public final SomethingObject<String> deserialize(
                TaggedDeserializationContext context, boolean wasAlreadyDeserialized) throws IOException {
            this.verifyFieldWasNotYetDeserialized(wasAlreadyDeserialized);
            return this.fieldType.deserializeSomethingField(context, this);
        }

        public final SomethingObject<String> deserialize(
            UntaggedDeserializationContext context,
            TypeDef typeDef) throws IOException {
            return Something.wrap(this.fieldType.deserializeValue(context, typeDef));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



java/core/src/main/java/org/bondlib/StructBondType.java [2372:2404]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        @Override
        public final boolean isDefaultNothing() {
            return true;
        }

        @Override
        public final String getDefaultValue() {
            return null;
        }

        public final SomethingObject<String> initialize() {
            return null;
        }

        public final SomethingObject<String> clone(SomethingObject<String> value) {
            return value == null ? null : Something.wrap(value.value);
        }

        public final void serialize(
                SerializationContext context, SomethingObject<String> value) throws IOException {
            this.fieldType.serializeSomethingField(context, value, this);
        }

        public final SomethingObject<String> deserialize(
                TaggedDeserializationContext context, boolean wasAlreadyDeserialized) throws IOException {
            this.verifyFieldWasNotYetDeserialized(wasAlreadyDeserialized);
            return this.fieldType.deserializeSomethingField(context, this);
        }

        public final SomethingObject<String> deserialize(
            UntaggedDeserializationContext context,
            TypeDef typeDef) throws IOException {
            return Something.wrap(this.fieldType.deserializeValue(context, typeDef));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



