neptune-export/src/main/java/com/amazonaws/services/neptune/profiles/neptune_ml/v1/parsing/ParseBucketCountV1.java [29:35]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public int parseBucketCount() {
        if (json.has("num_buckets") && json.path("num_buckets").isInt()) {
            return json.path("num_buckets").asInt();
        } else {
            throw ErrorMessageHelper.errorParsingField("num_buckets", context, "an integer");
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



neptune-export/src/main/java/com/amazonaws/services/neptune/profiles/neptune_ml/v2/parsing/ParseMinDfV2.java [29:35]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public int parseMinDf() {
        if (json.has("min_df") && json.path("min_df").isInt()) {
            return json.path("min_df").asInt();
        } else {
            throw ErrorMessageHelper.errorParsingField("min_df", context, "an integer value");
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



neptune-export/src/main/java/com/amazonaws/services/neptune/profiles/neptune_ml/v2/parsing/ParseMaxFeaturesV2.java [29:35]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public int parseMaxFeatures() {
        if (json.has("max_features") && json.path("max_features").isInt()) {
            return json.path("max_features").asInt();
        } else {
            throw ErrorMessageHelper.errorParsingField("max_features", context, "an integer value");
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



