All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.openservices.paifeaturestore.domain.FeatureViewFactory Maven / Gradle / Ivy

The newest version!
package com.aliyun.openservices.paifeaturestore.domain;

public class FeatureViewFactory {

    public static IFeatureView getFeatureView(com.aliyun.openservices.paifeaturestore.model.FeatureView view, Project p, FeatureEntity featureEntity){
        if (view.getType().equals("Sequence")) {
            return new SequenceFeatureView(view,p,featureEntity);
        } else {
            return new FeatureView(view,p,featureEntity);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy