CsdlEntityType isHasStream()

This commit is contained in:
Archana Rai 2020-04-14 20:53:36 +05:30
parent 1c8e5ce60b
commit a058f1c1cf
1 changed files with 10 additions and 0 deletions

View File

@ -40,6 +40,16 @@ public class CsdlEntityType extends CsdlStructuralType {
return hasStream;
}
/**
* Has stream.
* Duplicate getter according to java naming conventions.
*
* @return the boolean
*/
public boolean isHasStream() {
return hasStream;
}
/**
* Sets has stream.
*