Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for StringField (0.04 sec)

  1. src/test/java/org/codelibs/core/lang/FieldUtilTest.java

    /**
     * @author y-komori
     *
     */
    public class FieldUtilTest {
    
        /** */
        public Object objectField;
    
        /** */
        public int intField;
    
        /** */
        public String stringField;
    
        /** */
        public static final int INT_DATA = 987654321;
    
        /** */
        public static final String STRING_DATA = "Hello World!";
    
        /**
         * @throws Exception
         */
        @Test
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Fri Jun 20 13:40:57 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringSearchModelInterpolator.java

                    }
                }
    
                abstract void doInterpolate(Object target, InterpolateObjectAction ctx) throws IllegalAccessException;
            }
    
            static final class StringField extends CacheField {
                StringField(Field field) {
                    super(field);
                }
    
                @Override
                void doInterpolate(Object target, InterpolateObjectAction ctx) throws IllegalAccessException {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 07:09:12 UTC 2025
    - 15.6K bytes
    - Viewed (0)
  3. tests/scan_test.go

    		UIntField          uint
    		UInt8Field         uint8
    		UInt16Field        uint16
    		UInt32Field        uint32
    		UInt64Field        uint64
    		Float32Field       float32
    		Float64Field       float64
    		StringField        string
    		TimeField          time.Time
    		TimePtrField       *time.Time
    		EmbeddedStruct     `gorm:"embedded"`
    		*EmbeddedPtrStruct `gorm:"embedded"`
    	}
    
    	currTime := time.Now()
    Registered: Sun Dec 28 09:35:17 UTC 2025
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top