alluxio.security.authorization.Mode.fromShort()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(0.7k)|赞(0)|评价(0)|浏览(93)

本文整理了Java中alluxio.security.authorization.Mode.fromShort()方法的一些代码示例,展示了Mode.fromShort()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Mode.fromShort()方法的具体详情如下:
包路径:alluxio.security.authorization.Mode
类名称:Mode
方法名:fromShort

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);
}

相关文章