Searched refs:readExternal (Results 1 - 25 of 34) sorted by relevance

12

/libcore/ojluni/src/main/java/java/time/
H A DSer.java244 public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { method in class:Ser
256 case DURATION_TYPE: return Duration.readExternal(in);
257 case INSTANT_TYPE: return Instant.readExternal(in);
258 case LOCAL_DATE_TYPE: return LocalDate.readExternal(in);
259 case LOCAL_DATE_TIME_TYPE: return LocalDateTime.readExternal(in);
260 case LOCAL_TIME_TYPE: return LocalTime.readExternal(in);
261 case ZONE_DATE_TIME_TYPE: return ZonedDateTime.readExternal(in);
262 case ZONE_OFFSET_TYPE: return ZoneOffset.readExternal(in);
263 case ZONE_REGION_TYPE: return ZoneRegion.readExternal(in);
264 case OFFSET_TIME_TYPE: return OffsetTime.readExternal(i
[all...]
H A DZoneRegion.java216 static ZoneId readExternal(DataInput in) throws IOException { method in class:ZoneRegion
H A DOffsetTime.java1405 static OffsetTime readExternal(ObjectInput in) throws IOException, ClassNotFoundException { method in class:OffsetTime
1406 LocalTime time = LocalTime.readExternal(in);
1407 ZoneOffset offset = ZoneOffset.readExternal(in);
H A DOffsetDateTime.java1941 static OffsetDateTime readExternal(ObjectInput in) throws IOException, ClassNotFoundException { method in class:OffsetDateTime
1942 LocalDateTime dateTime = LocalDateTime.readExternal(in);
1943 ZoneOffset offset = ZoneOffset.readExternal(in);
H A DMonthDay.java780 static MonthDay readExternal(DataInput in) throws IOException { method in class:MonthDay
H A DZoneOffset.java788 static ZoneOffset readExternal(DataInput in) throws IOException { method in class:ZoneOffset
H A DLocalDateTime.java2001 static LocalDateTime readExternal(DataInput in) throws IOException { method in class:LocalDateTime
2002 LocalDate date = LocalDate.readExternal(in);
2003 LocalTime time = LocalTime.readExternal(in);
H A DZonedDateTime.java2241 static ZonedDateTime readExternal(ObjectInput in) throws IOException, ClassNotFoundException { method in class:ZonedDateTime
2242 LocalDateTime dateTime = LocalDateTime.readExternal(in);
2243 ZoneOffset offset = ZoneOffset.readExternal(in);
H A DInstant.java1359 static Instant readExternal(DataInput in) throws IOException { method in class:Instant
H A DPeriod.java1068 static Period readExternal(DataInput in) throws IOException { method in class:Period
H A DYear.java1112 static Year readExternal(DataInput in) throws IOException { method in class:Year
H A DYearMonth.java1238 static YearMonth readExternal(DataInput in) throws IOException { method in class:YearMonth
/libcore/ojluni/src/main/java/java/time/chrono/
H A DSer.java222 public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { method in class:Ser
234 case CHRONO_TYPE: return AbstractChronology.readExternal(in);
235 case CHRONO_LOCAL_DATE_TIME_TYPE: return ChronoLocalDateTimeImpl.readExternal(in);
236 case CHRONO_ZONE_DATE_TIME_TYPE: return ChronoZonedDateTimeImpl.readExternal(in);
237 case JAPANESE_DATE_TYPE: return JapaneseDate.readExternal(in);
238 case JAPANESE_ERA_TYPE: return JapaneseEra.readExternal(in);
239 case HIJRAH_DATE_TYPE: return HijrahDate.readExternal(in);
240 case MINGUO_DATE_TYPE: return MinguoDate.readExternal(in);
241 case THAIBUDDHIST_DATE_TYPE: return ThaiBuddhistDate.readExternal(in);
242 case CHRONO_PERIOD_TYPE: return ChronoPeriodImpl.readExternal(i
[all...]
H A DJapaneseEra.java387 static JapaneseEra readExternal(DataInput in) throws IOException { method in class:JapaneseEra
H A DChronoPeriodImpl.java393 static ChronoPeriodImpl readExternal(DataInput in) throws IOException { method in class:ChronoPeriodImpl
H A DChronoZonedDateTimeImpl.java356 static ChronoZonedDateTime<?> readExternal(ObjectInput in) throws IOException, ClassNotFoundException { method in class:ChronoZonedDateTimeImpl
H A DMinguoDate.java506 static MinguoDate readExternal(DataInput in) throws IOException { method in class:MinguoDate
H A DThaiBuddhistDate.java506 static ThaiBuddhistDate readExternal(DataInput in) throws IOException { method in class:ThaiBuddhistDate
H A DChronoLocalDateTimeImpl.java431 static ChronoLocalDateTime<?> readExternal(ObjectInput in) throws IOException, ClassNotFoundException { method in class:ChronoLocalDateTimeImpl
/libcore/ojluni/src/main/java/java/io/
H A DExternalizable.java36 * The writeExternal and readExternal methods of the Externalizable
51 * constructor, then the readExternal method called. Serializable
85 * The object implements the readExternal method to restore its
88 * readExternal method must read the values in the same sequence
96 void readExternal(ObjectInput in) throws IOException, ClassNotFoundException; method in interface:Externalizable
/libcore/ojluni/src/main/java/java/time/zone/
H A DSer.java181 public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { method in class:Ser
194 return ZoneRules.readExternal(in);
196 return ZoneOffsetTransition.readExternal(in);
198 return ZoneOffsetTransitionRule.readExternal(in);
H A DZoneOffsetTransition.java224 static ZoneOffsetTransition readExternal(DataInput in) throws IOException { method in class:ZoneOffsetTransition
H A DZoneRules.java429 static ZoneRules readExternal(DataInput in) throws IOException, ClassNotFoundException { method in class:ZoneRules
454 rules[i] = ZoneOffsetTransitionRule.readExternal(in);
H A DZoneOffsetTransitionRule.java340 static ZoneOffsetTransitionRule readExternal(DataInput in) throws IOException { method in class:ZoneOffsetTransitionRule
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
H A DObjectStreamClassTest.java194 public void readExternal(ObjectInput input) throws IOException, ClassNotFoundException { method in class:ObjectStreamClassTest.ExternalizableClass

Completed in 258 milliseconds

12