Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for propertyName (0.16 sec)

  1. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

        public PropertyDescImpl(final String propertyName, final Class<?> propertyType, final Method readMethod, final Method writeMethod,
                final Field field, final BeanDesc beanDesc) {
            assertArgumentNotEmpty("propertyName", propertyName);
            assertArgumentNotNull("propertyType", propertyType);
            assertArgumentNotNull("beanDesc", beanDesc);
    
            this.propertyName = propertyName;
            this.propertyType = propertyType;
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 15.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

        }
    
        @Override
        public boolean hasPropertyDesc(final String propertyName) {
            assertArgumentNotEmpty("propertyName", propertyName);
    
            return propertyDescCache.get(propertyName) != null;
        }
    
        @Override
        public PropertyDesc getPropertyDesc(final String propertyName) {
            assertArgumentNotEmpty("propertyName", propertyName);
    
            final PropertyDesc pd = propertyDescCache.get(propertyName);
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 26.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/beans/util/CopyOptions.java

        /**
         * 操作の対象に含めるプロパティ名を追加します。
         *
         * @param propertyNames
         *            プロパティ名の並び。{@literal null}や空配列であってはいけません
         * @return このインスタンス自身
         */
        public CopyOptions include(final CharSequence... propertyNames) {
            assertArgumentNotEmpty("propertyNames", propertyNames);
    
            includePropertyNames.addAll(toStringList(propertyNames));
            return this;
        }
    
        /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/UpgradedPropertiesChangesTest.kt

                                "methodName": "getSourceCompatibility",
                                "methodDescriptor": "()Lorg/gradle/api/provider/Property;",
                                "propertyName": "sourceCompatibility",
                                "replacedAccessors": [{
                                    "binaryCompatibility": "ACCESSORS_REMOVED",
                                    "descriptor": "()Ljava/lang/String;",
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Apr 23 08:40:36 GMT 2024
    - 20.2K bytes
    - Viewed (0)
  5. fastapi/openapi/models.py

        description: Optional[str] = None
        variables: Optional[Dict[str, ServerVariable]] = None
    
    
    class Reference(BaseModel):
        ref: str = Field(alias="$ref")
    
    
    class Discriminator(BaseModel):
        propertyName: str
        mapping: Optional[Dict[str, str]] = None
    
    
    class XML(BaseModelWithConfig):
        name: Optional[str] = None
        namespace: Optional[str] = None
        prefix: Optional[str] = None
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 22:49:33 GMT 2024
    - 15K bytes
    - Viewed (1)
  6. src/main/java/org/codelibs/core/beans/util/CopyOptionsUtil.java

         *
         * @param propertyNames
         *            プロパティ名の配列。{@literal null}や空配列であってはいけません
         * @return 操作の対象に含めるプロパティ名を指定した{@link CopyOptions}
         * @see CopyOptions#include(CharSequence...)
         */
        public static CopyOptions include(final CharSequence... propertyNames) {
            return new CopyOptions().include(propertyNames);
        }
    
        /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.2K bytes
    - Viewed (0)
Back to top