本文整理了Java中alluxio.security.authorization.Mode.fromShort()
方法的一些代码示例,展示了Mode.fromShort()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Mode.fromShort()
方法的具体详情如下:
包路径:alluxio.security.authorization.Mode
类名称:Mode
方法名:fromShort
[英]Sets Mode bits using a digital representation.
[中]使用数字表示设置模式位。
代码示例来源:origin: Alluxio/alluxio
/**
* Constructs an instance of {@link Mode} with the given mode.
*
* @param mode the digital representation of a {@link Mode}
* @see #toShort()
*/
public Mode(short mode) {
fromShort(mode);
}
代码示例来源:origin: org.alluxio/alluxio-core-common
/**
* Constructs an instance of {@link Mode} with the given mode.
*
* @param mode the digital representation of a {@link Mode}
* @see #toShort()
*/
public Mode(short mode) {
fromShort(mode);
}
内容来源于网络,如有侵权,请联系作者删除!