com.aliyun.openservices.paifeaturestore.domain.FeatureViewFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of paifeaturestore-sdk Show documentation
Show all versions of paifeaturestore-sdk Show documentation
SDK for PAI-FeatureStore service
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);
}
}
}