English 中文(简体)
1. 生命线
原标题:Liferay Group types

当我管理以下 s

select distinct(type_) from Group_

我在数据库表<代码>上列出了0,1,3类。 Group_。

0、1和3意味着什么,是否有其他可能的价值?

最佳回答

Got the response from com.liferay.portal.model.GroupConstants

TYPE_COMMUNITY_OPEN = 1,
TYPE_COMMUNITY_RESTRICTED = 2,
TYPE_COMMUNITY_PRIVATE = 3,
DEFAULT_PARENT_GROUP_ID = 0 
问题回答

暂无回答




相关问题
Having many stacks with different types

I m making a C program that needs to use two stacks. One needs to hold chars, the other needs to hold doubles. I have two structs, node and stack: struct node { double value; struct node *...

Creating (boxed) primitive instance when the class is known

I need a method that returns an instance of the supplied class type. Let s assume that the supplied types are limited to such that an "empty" instance of them can be created. For instance, supplying ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

How to generate an instance of an unknown type at runtime?

i ve got the following in C#: string typename = "System.Int32"; string value = "4"; theses two strings should be taken to generate an object of the specified type with the specified value... result ...

Type reference scope

I m studying databases and am currently working on a object-relational DB project and I ve encountered a small problem with the number of possible constraints in an object table. I m using "Database ...

热门标签