本文整理汇总了Java中lucee.runtime.type.Struct.TYPE_WEAKED属性的典型用法代码示例。如果您正苦于以下问题:Java Struct.TYPE_WEAKED属性的具体用法?Java Struct.TYPE_WEAKED怎么用?Java Struct.TYPE_WEAKED使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类lucee.runtime.type.Struct
的用法示例。
在下文中一共展示了Struct.TYPE_WEAKED属性的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: call
public static Struct call(PageContext pc ,String type) throws FunctionException {
type=type.toLowerCase();
if(type.equals("linked")) return new StructImpl(Struct.TYPE_LINKED);
else if(type.equals("ordered")) return new StructImpl(Struct.TYPE_LINKED);
else if(type.equals("weak")) return new StructImpl(Struct.TYPE_WEAKED);
else if(type.equals("syncronized")) return new StructImpl(Struct.TYPE_SYNC);
else if(type.equals("synchronized")) return new StructImpl(Struct.TYPE_SYNC);
else if(type.equals("sync")) return new StructImpl(Struct.TYPE_SYNC);
else if(type.equals("soft")) return new StructImpl(StructImpl.TYPE_SOFT);
else if(type.equals("normal")) return new StructImpl();
else throw new FunctionException(pc,"structNew",1,"type","valid values are [normal, weak, linked, soft, synchronized]");
}
示例2: getType
public static int getType(MapPro m){
if(m instanceof SyncMap)
return ((SyncMap)m).getType();
if(m instanceof LinkedHashMapPro) return Struct.TYPE_LINKED;
if(m instanceof WeakHashMapPro) return Struct.TYPE_WEAKED;
//if(map instanceof SyncMap) return TYPE_SYNC;
if(m instanceof MapProWrapper) return Struct.TYPE_SOFT;
return Struct.TYPE_REGULAR;
}
示例3: toType
public static int toType(String type) throws ApplicationException {
type=type.toLowerCase();
if(type.equals("linked")) return Struct.TYPE_LINKED;
else if(type.equals("ordered")) return Struct.TYPE_LINKED;
else if(type.equals("weaked")) return Struct.TYPE_WEAKED;
else if(type.equals("weak")) return Struct.TYPE_WEAKED;
else if(type.equals("syncronized")) return Struct.TYPE_SYNC;
else if(type.equals("synchronized")) return Struct.TYPE_SYNC;
else if(type.equals("sync")) return Struct.TYPE_SYNC;
else if(type.equals("soft")) return Struct.TYPE_SOFT;
else if(type.equals("normal")) return Struct.TYPE_REGULAR;
else if(type.equals("regular")) return Struct.TYPE_REGULAR;
else throw new ApplicationException("valid struct types are [normal, weak, linked, soft, synchronized]");
}
示例4: toType
public static String toType(int type, String defaultValue){
if(Struct.TYPE_LINKED==type) return "ordered";
if(Struct.TYPE_WEAKED==type) return "weak";
if(Struct.TYPE_REGULAR==type) return "regular";
if(Struct.TYPE_REGULAR==type) return "regular";
if(Struct.TYPE_SOFT==type) return "soft";
if(Struct.TYPE_SYNC==type) return "synchronized";
if(Struct.TYPE_UNDEFINED==type) return "undefined";
return defaultValue;
}