c3r-sdk-parquet/src/main/java/com/amazonaws/c3r/data/ParquetValue.java [386:404]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            this.value = value;
        }

        /**
         * The {@code Double} Parquet type cannot have any logical type annotations.
         *
         * @return {@code true} if no logical type annotations exist
         */
        @Override
        boolean validateAnnotation() {
            return getParquetDataType().getParquetType().getLogicalTypeAnnotation() == null;
        }

        /**
         * {@inheritDoc}
         */
        @Override
        public void writeValue(final RecordConsumer consumer) {
            if (value != null) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



c3r-sdk-parquet/src/main/java/com/amazonaws/c3r/data/ParquetValue.java [464:482]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            this.value = value;
        }

        /**
         * The {@code Float} Parquet type cannot have any logical type annotations.
         *
         * @return {@code true} if no logical type annotations exist
         */
        @Override
        boolean validateAnnotation() {
            return getParquetDataType().getParquetType().getLogicalTypeAnnotation() == null;
        }

        /**
         * {@inheritDoc}
         */
        @Override
        public void writeValue(final RecordConsumer consumer) {
            if (value != null) {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



