src/main/java/com/amazonaws/services/neptune/propertygraph/io/result/ExportPGNodeResult.java [47:64]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public String getFrom() {
        throw new IllegalStateException("Illegal attempt to getFrom() from a Node Result");
    }

    @Override
    public String getTo() {
        throw new IllegalStateException("Illegal attempt to getTo() from a Node Result");
    }

    @Override
    public List<String> getFromLabels() {
        throw new IllegalStateException("Illegal attempt to getFromLabels() from a Node Result");
    }

    @Override
    public List<String> getToLabels() {
        throw new IllegalStateException("Illegal attempt to getToLabels() from a Node Result");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/amazonaws/services/neptune/propertygraph/io/result/QueriesNodeResult.java [55:72]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public String getFrom() {
        throw new IllegalStateException("Illegal attempt to getFrom() from a Node Result");
    }

    @Override
    public String getTo() {
        throw new IllegalStateException("Illegal attempt to getTo() from a Node Result");
    }

    @Override
    public List<String> getFromLabels() {
        throw new IllegalStateException("Illegal attempt to getFromLabels() from a Node Result");
    }

    @Override
    public List<String> getToLabels() {
        throw new IllegalStateException("Illegal attempt to getToLabels() from a Node Result");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



